Function: imap-anonymous-auth
imap-anonymous-auth is a byte-compiled function defined in imap.el.gz.
Signature
(imap-anonymous-auth BUFFER)
Source Code
;; Defined in /usr/src/emacs/lisp/net/imap.el.gz
(defun imap-anonymous-auth (buffer)
(message "imap: Logging in anonymously...")
(with-current-buffer buffer
(imap-ok-p (imap-send-command-wait
(concat "LOGIN anonymous \"" (concat (user-login-name) "@"
(system-name)) "\"")))))