Re: What's the best way to auto-sign some emails but not all?

Bjørn Mork <[email protected]> Sun, 08 Dec 2024 14:22:07 +0100
Newsgroups gmane.emacs.gnus.general
Organization m
Message-ID <[email protected]>
James Thomas <[email protected]> writes:

> This seems to work:
>
> (setq gnus-posting-styles
>       '((t
> 	 (eval (setq-local message-cite-reply-position 'above))
> 	 (body "<#secure method=pgpmime mode=sign>"))))

Sort of.  But it also places the signature (i.e. the "-- \n" etc, not
the pgp signature) above the quoted text.  But that might be controlled
by some other variable?

Works pretty well if combined with

	(signature nil))

Still adds an unwanted empty line above "foo writes:"

So the message--yank-original-internal advice hack is my preferred
solution.



Bjørn