Variable: pop3-stream-type
pop3-stream-type is a customizable variable defined in pop3.el.gz.
Value
nil
Documentation
Transport security type for POP3 connections.
This may be either nil (plain connection), ssl (use an
SSL/TSL-secured stream) or starttls (use the starttls mechanism
to turn on TLS security after opening the stream). However, if
this is nil, ssl is assumed for connections to port
995 (pop3s).
This variable was added, or its default value changed, in Emacs 23.1.
Source Code
;; Defined in /usr/src/emacs/lisp/net/pop3.el.gz
(defcustom pop3-stream-type nil
"Transport security type for POP3 connections.
This may be either nil (plain connection), `ssl' (use an
SSL/TSL-secured stream) or `starttls' (use the starttls mechanism
to turn on TLS security after opening the stream). However, if
this is nil, `ssl' is assumed for connections to port
995 (pop3s)."
:version "23.1" ;; No Gnus
:group 'pop3
:type '(choice (const :tag "Plain" nil)
(const :tag "SSL/TLS" ssl)
(const starttls)))