aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2003-07-04 11:24:57 +0000
committerGlenn Morris2003-07-04 11:24:57 +0000
commit01bb608efbf382dbae963fc8706a036e2619abee (patch)
tree6d2c06813a687b1ba82a2dbd173bf438d056bf3b
parentde41ff5ed9653cca2f9011e2f5f80de23a263e6c (diff)
downloademacs-01bb608efbf382dbae963fc8706a036e2619abee.tar.gz
emacs-01bb608efbf382dbae963fc8706a036e2619abee.zip
(mail-specify-envelope-from, mail-envelope-from): Doc fix.
-rw-r--r--lisp/mail/sendmail.el12
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 130bd160a4b..fa6fd8952ff 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -70,16 +70,20 @@ controlled by a separate variable, `mail-specify-envelope-from'."
70The value used to specify it is whatever is found in 70The value used to specify it is whatever is found in
71`mail-envelope-from', with `user-mail-address' as fallback. 71`mail-envelope-from', with `user-mail-address' as fallback.
72 72
73On most systems, specifying the envelope-from address 73On most systems, specifying the envelope-from address is a
74is a privileged operation." 74privileged operation. This variable is only used if
75`send-mail-function' is set to `sendmail-send-it'."
75 :version "21.1" 76 :version "21.1"
76 :type 'boolean 77 :type 'boolean
77 :group 'sendmail) 78 :group 'sendmail)
78 79
79(defcustom mail-envelope-from nil 80(defcustom mail-envelope-from nil
80 "*If non-nil, designate the envelope-from address when sending mail. 81 "*If non-nil, designate the envelope-from address when sending mail.
81If this is nil while `mail-specify-envelope-from' is non-nil, the 82This only has an effect if `mail-specify-envelope-from' is non-nil.
82content of `user-mail-address' is used." 83The value should be either a string, or the symbol `header' (in
84which case the contents of the \"From\" header of the message
85being sent is used), or nil (in which case the value of
86`user-mail-address' is used)."
83 :version "21.1" 87 :version "21.1"
84 :type '(choice (string :tag "From-name") 88 :type '(choice (string :tag "From-name")
85 (const :tag "Use From: header from message" header) 89 (const :tag "Use From: header from message" header)