Synch to No Gnus 200403121916.
authoryamaoka <yamaoka>
Sat, 13 Mar 2004 00:30:23 +0000 (00:30 +0000)
committeryamaoka <yamaoka>
Sat, 13 Mar 2004 00:30:23 +0000 (00:30 +0000)
lisp/ChangeLog
lisp/imap.el

index 7919fea..64e6dbe 100644 (file)
@@ -1,3 +1,9 @@
+2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * imap.el (imap-store-password): New variable.
+       (imap-interactive-login): Use it.
+       Suggested by Mark Plaksin <happy@mcplaksin.org>.
+
 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * gnus-art.el (gnus-article-read-summary-keys): Restore new
index ea69dff..56a7e67 100644 (file)
@@ -262,6 +262,11 @@ Shorter values mean quicker response, but is more CPU intensive."
   :type 'number
   :group 'imap)
 
+(defcustom imap-store-password nil
+  "If non-nil, store session password without promting."
+  :group 'imap
+  :type 'boolean)
+
 ;; Various variables.
 
 (defvar imap-fetch-data-hook nil
@@ -811,9 +816,10 @@ Returns t if login was successful, nil otherwise."
              (progn
                (setq ret t
                      imap-username user)
-               (if (and (not imap-password)
-                        (y-or-n-p "Store password for this session? "))
-                   (setq imap-password passwd)))
+               (when (and (not imap-password)
+                          (or imap-store-password
+                              (y-or-n-p "Store password for this session? ")))
+                 (setq imap-password passwd)))
            (message "Login failed...")
            (setq passwd nil)
            (setq imap-password nil)