info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Separate signature files for email and groups


From: Tassilo Horn
Subject: Re: Separate signature files for email and groups
Date: Fri, 15 Feb 2008 20:17:52 +0100
User-agent: Gnus/5.110007 (No Gnus v0.7) Emacs/23.0.60 (gnu/linux)

Tobias Brink <tobias.brinkNO.SPAM@gmail.com> writes:

Hi Tobias,

> How about the following?
>
> (setq gnus-posting-styles
>   '(((message-news-p)
>      (signature "This is my news sig")
>      )
>
>     ((message-mail-p)
>      (signature "This is my mail sig")
>      )))

That won't work.  The regexps of posting styles are matched against
group names.  But you could use those functions to add a signature, too.

Untested:

(defun insert-sig ()
  (let ((message-signature (if (message-mail-p)
                               "My mail sig"
                             "My news sig")))
    (message-insert-signature)))

(add-hook 'message-send-hook 'insert-sig)

Or instead of the `if' in the function above you could use
`message-send-news-hook' and `message-send-mail-hook'.

Bye,
Tassilo
-- 
Richard  Stallman  needs  neither  mouse  nor keyboard  to  operate  his
computer. He just stares it down until it does what he wants.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]