Function: imap-mailbox-create
imap-mailbox-create is a byte-compiled function defined in imap.el.gz.
Signature
(imap-mailbox-create MAILBOX &optional BUFFER)
Documentation
Create MAILBOX on server in BUFFER.
If BUFFER is nil the current buffer is assumed.
Source Code
;; Defined in /usr/src/emacs/lisp/net/imap.el.gz
(defun imap-mailbox-create (mailbox &optional buffer)
"Create MAILBOX on server in BUFFER.
If BUFFER is nil the current buffer is assumed."
(with-current-buffer (or buffer (current-buffer))
(imap-mailbox-create-1 (imap-utf7-encode mailbox))))