Kelly Jones wrote: > >We recently added an auto-reply that says "thanks for submitting your >resume'". The auto-reply comes from "[EMAIL PROTECTED]", which >seems incorrect. I can see setting "Errors-To:" to this address and >maybe even the envelope sender, but not the "From:" line. > >The problem: when someone replies (perhaps w/ more followup >information), the reply goes to [EMAIL PROTECTED], which isn't >helpful.
Right, but when their vacation program replies, it isn't helpful for that to go to your list. >Is this intentional? Can it be changed? We've played around w/ >redirecting where resumes-bounces goes, but that doesn't seem like the >correct solution here. It's easy enough to change, if you want to hack the code. The From: address is the second argument to Message.UserNotification in outmsg = Message.UserNotification(sender, mlist.GetBouncesEmail(), subject, text, mlist.preferred_language) at line 105 in Mailman/Handlers/Replybot.py. You could replace mlist.GetBouncesEmail() with mlist.getListAddress() for the list posting address, or mlist.getListAddress('owner') for the list-owner address, or a new alias, say mlist.getListAddress('replies'), or even a literal address. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list Mailman-Users@python.org 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&file=faq01.027.htp