Variable: pop3-authentication-scheme

pop3-authentication-scheme is a customizable variable defined in pop3.el.gz.

Value

pass

Documentation

POP3 authentication scheme.

Defaults to pass, for the standard USER/PASS authentication. The other valid value is apop.

This variable was added, or its default value changed, in Emacs 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/pop3.el.gz
(defcustom pop3-authentication-scheme 'pass
  "POP3 authentication scheme.
Defaults to `pass', for the standard USER/PASS authentication.  The other
valid value is `apop'."
  :type '(choice (const :tag "Normal user/password" pass)
		 (const :tag "APOP" apop))
  :version "22.1" ;; Oort Gnus
  :group 'pop3)