Variable: mh-signature-file-name
mh-signature-file-name is a customizable variable defined in
mh-e.el.gz.
Value
"~/.signature"
Documentation
Source of user's signature.
By default, the text of your signature is taken from the file
"~/.signature". You can read from other sources by changing this
option. This file may contain a vCard in which case an attachment is
added with the vCard.
This option may also be a symbol, in which case that function is
called. You may not want a signature separator to be added for you;
instead you may want to insert one yourself. Options that you may find
useful to do this include mh-signature-separator (when inserting a
signature separator) and mh-signature-separator-regexp (for finding
said separator). The function mh-signature-separator-p, which
reports t if the buffer contains a separator, may be useful as well.
The signature is inserted into your message with the command
C-c C-s (mh-insert-signature) or with the option
mh-identity-list.
This variable was added, or its default value changed, in MH-E version
6.0.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom-mh mh-signature-file-name "~/.signature"
"Source of user's signature.
By default, the text of your signature is taken from the file
\"~/.signature\". You can read from other sources by changing this
option. This file may contain a vCard in which case an attachment is
added with the vCard.
This option may also be a symbol, in which case that function is
called. You may not want a signature separator to be added for you;
instead you may want to insert one yourself. Options that you may find
useful to do this include `mh-signature-separator' (when inserting a
signature separator) and `mh-signature-separator-regexp' (for finding
said separator). The function `mh-signature-separator-p', which
reports t if the buffer contains a separator, may be useful as well.
The signature is inserted into your message with the command
\\<mh-letter-mode-map>\\[mh-insert-signature] or with the option
`mh-identity-list'."
:type 'file
:group 'mh-letter
:package-version '(MH-E . "6.0"))