diff options
| -rw-r--r-- | lisp/mail/sendmail.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 437f3b8c2b4..5c33f370e93 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -88,6 +88,10 @@ This file typically should be in same format as the `.mailrc' file used by | |||
| 88 | the `Mail' or `mailx' program. | 88 | the `Mail' or `mailx' program. |
| 89 | This file need not actually exist.") | 89 | This file need not actually exist.") |
| 90 | 90 | ||
| 91 | (defvar mail-setup-hook nil | ||
| 92 | "Normal hook, run each time a new outgoing mail message is initialized. | ||
| 93 | The function `mail-setup' runs this hook.") | ||
| 94 | |||
| 91 | (defvar mail-aliases t | 95 | (defvar mail-aliases t |
| 92 | "Alist of mail address aliases, | 96 | "Alist of mail address aliases, |
| 93 | or t meaning should be initialized from your mail aliases file. | 97 | or t meaning should be initialized from your mail aliases file. |
| @@ -929,8 +933,8 @@ a Reply-to: field with that address is inserted. | |||
| 929 | If `mail-archive-file-name' is non-nil, an FCC field with that file name | 933 | If `mail-archive-file-name' is non-nil, an FCC field with that file name |
| 930 | is inserted. | 934 | is inserted. |
| 931 | 935 | ||
| 932 | If `mail-setup-hook' is bound, its value is called with no arguments | 936 | The normal hook `mail-setup-hook' is run after the message is |
| 933 | after the message is initialized. It can add more default fields. | 937 | initialized. It can add more default fields to the message. |
| 934 | 938 | ||
| 935 | When calling from a program, the first argument if non-nil says | 939 | When calling from a program, the first argument if non-nil says |
| 936 | not to erase the existing contents of the `*mail*' buffer. | 940 | not to erase the existing contents of the `*mail*' buffer. |