*/
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) {
if (session.getLog().isDebugEnabled()) {
session.getLog().debug("Create failed for mailbox " + mailboxPath + " as it already exists", e);