*/
protected void doProcess(CreateRequest request, ImapSession session, String tag, ImapCommand command, Responder responder) {
final MailboxPath mailboxPath = buildFullPath(session, request.getMailboxName());
try {
final MailboxManager mailboxManager = getMailboxManager();
mailboxManager.createMailbox(mailboxPath, ImapSessionUtils.getMailboxSession(session));
unsolicitedResponses(session, responder, false);
okComplete(command, tag, responder);
} catch (MailboxExistsException e) {
session.getLog().debug("Create failed", e);
no(command, tag, responder, HumanReadableText.MAILBOX_EXISTS);