> I like people not replying to me when I post to a list.
> Therefore I've set up some send-hooks like this:
>
> send-hook '~C .*mutt-users@mutt\.org.*' 'my_hdr Reply-To: mutt users
><[EMAIL PROTECTED]>'
> subscribe mutt
> alias mutt mutt users <[EMAIL PROTECTED]>
>
> for some strange reason I get sometimes one of these `Reply-To:'
> headers inserted in a mail which has /no/ To: or Cc: to the list
> which is inserted.
"Sometimes" means: after sending mail to mutt-users for the first time
after starting mutt.
You need to reset the send-hook explicitly before setting it:
send-hook . 'unmy_hdr Reply-To:'
send-hook '~C .*mutt-users@mutt\.org' 'my_hdr Reply-To: mutt users
<[EMAIL PROTECTED]>'
[The .* at the end of the expression is pretty useless, so I've removed it.]
Personally, I would not use such a send-hook. mutt has different reply
functions for sender, group, and list. Some people argue that Reply-To:
should never be set to the list
http://www.unicom.com/pw/reply-to-harmful.html
but another school of thought exists which proclaims the exact opposite :)
> Did I make something wrong ?