GH writes:

> (setq mail-default-reply-to "u...@example.org")

[...]

> how can I set it in message mode?

In Gnus you can use gnus-posting-styles, something like:

    (setq gnus-posting-styles
          '((".*"
             (reply-to "u...@example.org")
             )))

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: 
u...@example.org")))


  Best regards,

    Adam

-- 
 "We get it, luv, you can opera."                           Adam Sjøgren
                                                       a...@koldfront.dk


Reply via email to