diff options
| author | Karl Heuer | 1998-04-06 22:05:23 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-04-06 22:05:23 +0000 |
| commit | 757c23325145807e24689595555286c8f2089174 (patch) | |
| tree | cf3953056561bc8c824f69c0b342589033df9c12 | |
| parent | a46aa0b2b3653a6e8f5b6176b8ab4e5d6da29506 (diff) | |
| download | emacs-757c23325145807e24689595555286c8f2089174.tar.gz emacs-757c23325145807e24689595555286c8f2089174.zip | |
(rmail-movemail-flags): New customizable variable
to specify additional flags to pass to movemail.
(rmail-insert-inbox-text): Use rmail-movemail-flags.
| -rw-r--r-- | lisp/mail/rmail.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 1381ec2560b..fb07ac9bcf3 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -102,6 +102,13 @@ | |||
| 102 | :type 'boolean | 102 | :type 'boolean |
| 103 | :group 'rmail-retrieve) | 103 | :group 'rmail-retrieve) |
| 104 | 104 | ||
| 105 | (defcustom rmail-movemail-flags nil | ||
| 106 | "*List of flags to pass to movemail. Most commonly used to specify | ||
| 107 | `-g' to enable GSS-API authentication or `-k' to enable Kerberos | ||
| 108 | authentication." | ||
| 109 | :type 'list | ||
| 110 | :group 'rmail-retrieve) | ||
| 111 | |||
| 105 | (defvar rmail-pop-password-error "invalid usercode or password" | 112 | (defvar rmail-pop-password-error "invalid usercode or password" |
| 106 | "Regular expression matching incorrect-password POP server error messages. | 113 | "Regular expression matching incorrect-password POP server error messages. |
| 107 | If you get an incorrect-password error that this expression does not match, | 114 | If you get an incorrect-password error that this expression does not match, |
| @@ -1316,6 +1323,7 @@ It returns t if it got any new messages." | |||
| 1316 | (if rmail-preserve-inbox | 1323 | (if rmail-preserve-inbox |
| 1317 | (list "-p") | 1324 | (list "-p") |
| 1318 | nil) | 1325 | nil) |
| 1326 | rmail-movemail-flags | ||
| 1319 | (list file tofile) | 1327 | (list file tofile) |
| 1320 | (if rmail-pop-password | 1328 | (if rmail-pop-password |
| 1321 | (list rmail-pop-password) | 1329 | (list rmail-pop-password) |