+2002-01-22  Kenichi OKADA  <okada@opaopa.org>
+
+       * elmo-vars.el (elmo-imap4-default-authenticate-type): Give
+       other choices.
+       (elmo-pop3-default-authenticate-type): Ditto.
+
 2002-01-22  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
 
        * elmo-vars.el (elmo-imap4-default-authenticate-type): Give
 
   :type '(radio (const :tag "encoded password transmission (login)" login)
                (const :tag "CRAM-MD5 authentication (cram-md5)" cram-md5)
                (const :tag "DIGEST-MD5 authentication (digest-md5)" digest-md5)
-               (const :tag "plain password transmission (clear)" clear))
+               (const :tag "plain password transmission (clear)" clear)
+               (const :tag "NTLM authentication (ntlm)" ntlm)
+               (function :tag "Other"))
   :group 'elmo)
 
 (defcustom elmo-imap4-default-user (or (getenv "USER")
 (defcustom elmo-pop3-default-authenticate-type 'user
   "*Default Authentication type for POP3."
   :type '(radio (const :tag "plain password transmission (user)" user)
-               (const :tag "APOP authentication (apop)" apop))
+               (const :tag "APOP authentication (apop)" apop)
+               (const :tag "CRAM-MD5 authentication (cram-md5)" cram-md5)
+               (const :tag "DIGEST-MD5 authentication (digest-md5)" digest-md5)
+               (const :tag "NTLM authentication (ntlm)" ntlm)
+               (function :tag "Other"))
   :group 'elmo)
 
 (defcustom elmo-pop3-default-port 110