Search the FAQ Archives

3 - A - B - C - D - E - F - G - H - I - J - K - L - M
N - O - P - Q - R - S - T - U - V - W - X - Y - Z
faqs.org - Internet FAQ Archives

Signature, Finger, & Customized Headers FAQ
Section - ... ... 1.2.5 Emacs Mail Mode

( Single Page )
[ Usenet FAQs | Web FAQs | Documents | RFC Index | Restaurant inspections ]


Top Document: Signature, Finger, & Customized Headers FAQ
Previous Document: ... ... 1.2.4 SUN OpenWindows Mailtool
Next Document: ... ... 1.2.6 MH and Emacs mh-e
See reader questions & answers on this topic! - Help others by sharing your knowledge
=o= Emacs Mail Mode is usually invoked with the "mail" or
"mail-other-window" commands (bound, respectively, to the
"C-x m" and "C-x 4 m" keys by default).  It is also invoked
from various Emacs mail and news packages.

=o= Mail Mode provides a "mail-signature" command to append
the contents of your signature file to the end of your mail
message.  This command is bound to "C-c C-w" by default,
so to insert the signature before mailing, simply type
"C-c "C-w".

=o= If you'd prefer to have your signature automatically
appended to the end of your mail message, the "mail-signature"
command can be put into your "mail-setup-hook" variable in
your $HOME/.emacs file, as in this example:

    (setq mail-setup-hook
      (function
       (lambda ()
	 (mail-signature) )))

This will put the signature in your mail message buffer.


Instructions for Version 19 by Richard Kasperowski and Matt Kaufmann
====================================================================
In emacs 19, I use:

 (setq mail-signature t)

There is a problem with my expression with respect posting to USENET
via GNUS.  GNUS automatically appends .signature to the post when it
There is a problem with my expression with respect posting to USENET
via GNUS.  GNUS automatically appends .signature to the post when it
is sent out.  With (setq mail-signature t), .signature is appended to
the end of the emacs buffer in which you edit your post.  When you
send-out the post, another .signature is appended to the end.  You end
up with two .signatures on your USENET posts.


If you prefer, you can use the following minor modification
of the version 18 form shown above:

    (setq mail-setup-hook
      (function
       (lambda ()
        (mail-signature nil) )))

User Contributions:

Comment about this article, ask questions, or add new information about this topic:




Top Document: Signature, Finger, & Customized Headers FAQ
Previous Document: ... ... 1.2.4 SUN OpenWindows Mailtool
Next Document: ... ... 1.2.6 MH and Emacs mh-e

Single Page

[ Usenet FAQs | Web FAQs | Documents | RFC Index ]

Send corrections/additions to the FAQ Maintainer:
FAQ Editor <faq-editor@ii.com>





Last Update March 27 2014 @ 02:12 PM