On Wed, 02 Jul 2008 20:06:13 +0200, Richard G Riley <[EMAIL PROTECTED]>
said:


> (defun message-make-message-id()
>    (concat "<"(message-unique-id)"@yourmachine.yourdomain.tld>"))
>
> But how can I do this ONLY for specific groups?


I am sure Ted's answer is nice but not sufficient for most purposes where one
sends news from different providers, use different mail adresses and so... I
thus don't rely on system settings for mail sending and use smtpmail instead,
for news I customize the server to connect too.

I have a little library that I am using for almost 10 years now which allows
me to customize an X-Fake header that I set in a group/topic parameter. This
basically change some sensible fields such as the From and Message-Id fields
of the header.

For message id's I use

(defun message-fake-message-id (&optional faked-config-name env)
  "Fakes a unique message id base on faked configuration's machine's opinion"
  (flet ((message-make-fqdn () (message-fake-fqdn faked-config-name env)))
    (message-make-message-id)))

to rewrite how id's are generated.

I can send it to the group if there is some interest.

-- 
                Renaud
_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to