From bf2d20f8fbf38b58e77291fde0d7ad4b385b0bb2 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Tue, 12 Oct 2004 03:38:39 +0000 Subject: [PATCH] Fix previous commit. --- lisp/pop3.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lisp/pop3.el b/lisp/pop3.el index d4a6ae1..e8fc324 100644 --- a/lisp/pop3.el +++ b/lisp/pop3.el @@ -107,7 +107,9 @@ (defcustom pop3-connection-type nil "*POP3 connection type." - :type 'boolean + :type '(choice (const :tag "Not specified" nil) + (const tls) + (const ssl)) :group 'pop3) (defcustom pop3-password-required t @@ -156,11 +158,9 @@ Used for APOP authentication.") :type '(file :format "%t: %v\n" :size 0) :group 'pop3) -(defcustom pop3-uidl-support nil +(defvar pop3-uidl-support nil "Alist of servers and flags of whether they support UIDLs. -Users don't have to set this value." - :type 'boolean - :group 'pop3) +Users don't have to set this value.") (defvar pop3-uidl-obarray (make-vector 31 0) "Uidl hash table.") -- 1.7.10.4