Gretchen Stanton wrote:
>
> I will give your code mods a careful try.
>
> On Friday 27 May 2005 22:45, Mark Sapiro wrote:
>>
>> The code to change is in Mailman/Handlers/Acknowledge.py
>>
>> You could try changing
>>
>>     usermsg = Message.UserNotification(sender,
>> mlist.GetBouncesEmail(),
>>                                        subject, text, lang)
>>
>> to
>>
>>     usermsg = Message.UserNotification(sender, mlist.GetListEmail(),
>>                                        subject, text, lang)
>>
>> All the usual disclaimers - no warranty, try at your own risk ...

I think I misunderstood which autoresponse you were talking about. The
above change is for acknowledgements to user's posts, not to
autoresponses. For autoresponses the module is
Mailman/Handlers/Replybot.py. The change is similar - from

     outmsg = Message.UserNotification(sender, mlist.GetBouncesEmail(),
                                       subject, text,
mlist.preferred_language)

to

     outmsg = Message.UserNotification(sender, mlist.GetListEmail(),
                                       subject, text,
mlist.preferred_language)

--
Mark Sapiro <msapiro at value.net>       The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan

------------------------------------------------------
Mailman-Users mailing list
[email protected]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=show&amp;file=faq01.027.htp

Reply via email to