Function: rmail-set-remote-password
rmail-set-remote-password is an autoloaded, interactive and
byte-compiled function defined in rmail.el.gz.
Signature
(rmail-set-remote-password PASSWORD)
Documentation
Set PASSWORD to be used for retrieving mail from a POP or IMAP server.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmail.el.gz
;;;###autoload
(defun rmail-set-remote-password (password)
"Set PASSWORD to be used for retrieving mail from a POP or IMAP server."
(interactive "sPassword: ")
(if password
(setq rmail-encoded-remote-password
(rmail-encode-string password (emacs-pid)))
(setq rmail-remote-password nil)
(setq rmail-encoded-remote-password nil)))