Function: pop3-pass

pop3-pass is a byte-compiled function defined in pop3.el.gz.

Signature

(pop3-pass PROCESS)

Documentation

Send authentication information to the server.

Source Code

;; Defined in /usr/src/emacs/lisp/net/pop3.el.gz
(defun pop3-pass (process)
  "Send authentication information to the server."
  (pop3-send-command process (format "PASS %s" pop3-password))
  (let ((response (pop3-read-response process t)))
    (if (not (and response (string-match "\\+OK" response)))
	(pop3-quit process))))