diff options
Diffstat (limited to 'lisp/gnus/message.el')
-rw-r--r-- | lisp/gnus/message.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index f175036e96f..27cae74c755 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -256,10 +256,10 @@ This is a list of regexps and regexp matches." :type '(repeat regexp)) (defcustom message-deletable-headers '(Message-ID Date Lines) - "Headers to be deleted if they already exist and were generated by message previously." + "Headers to delete if present and previously generated by message." :group 'message-headers :link '(custom-manual "(message)Message Headers") - :type 'sexp) + :type '(repeat (symbol :tag "Header"))) (defcustom message-ignored-news-headers "^NNTP-Posting-Host:\\|^Xref:\\|^[BGF]cc:\\|^Resent-Fcc:\\|^X-Draft-From:\\|^X-Gnus-Agent-Meta-Information:\\|^X-Message-SMTP-Method:\\|^X-Gnus-Delayed:" @@ -1072,7 +1072,9 @@ If t, the `message-signature-file' file will be inserted instead. If a function, the result from the function will be used instead. If a form, the result from the form will be used instead." :version "23.2" - :type 'sexp + :type '(choice string (const :tag "Contents of signature file" t) + function + sexp) :risky t :link '(custom-manual "(message)Insertion Variables") :group 'message-insertion) |