GH writes:
> (setq mail-default-reply-to "[email protected]")
[...]
> how can I set it in message mode?
In Gnus you can use gnus-posting-styles, something like:
(setq gnus-posting-styles
'((".*"
(reply-to "[email protected]")
)))
This makes it easy to do things depending on the name of the group.
Or you could use a hook:
(add-hook 'message-setup-hook (lambda ()
(message-add-header "Reply-To:
[email protected]")))
Best regards,
Adam
--
"We get it, luv, you can opera." Adam Sjøgren
[email protected]