aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Handlers (unfollow)
Commit message (Collapse)AuthorFilesLines
2003-12-01process(): Update a few email package calls.bwarsaw1-5/+11
2003-12-01process(): The implementation of extended header filters viabwarsaw1-4/+79
header_filter_rules.
2003-12-01True/False where appropriate.bwarsaw1-1/+1
process(): When we encode the text, catch ValueError along with UnicodeError and LookupError. The ValueError can be raised if the charset is the empty string. Closes SF bug # 834486.
2003-12-01True/False where appropriate.bwarsaw1-15/+23
process(): When we encode the text, catch ValueError along with UnicodeError and LookupError. The ValueError can be raised if the charset is the empty string. Closes SF bug # 834486.
2003-12-01True/False where appropriate.bwarsaw1-1/+7
2003-11-27Typosbwarsaw1-2/+2
2003-11-27bulkdeliver(): Include the Message-ID in the log message.bwarsaw1-4/+6
2003-11-26bulkdeliver(): Rework the SMTP error handling to fix a problembwarsaw1-10/+21
described here: http://mail.python.org/pipermail/mailman-developers/2003-November/016119.html The issue is that if we get an SMTPResponseException with a permanent error code, we don't want to add all the recipients to the failures dict, otherwise they'll all score a bounce. That's not appropriate because the message is being rejected by the local smtpd for reasons having to do with the content of the message, not because there's some delivery problem to the recipient. Log all problems now to logs/smtp-failure.
2003-09-22Backporting from the HEAD -- updated handlersbwarsaw4-7/+11
2003-04-22Backporting once again from the trunk.bwarsaw1-4/+6
I18ners please double check (except Tokio). It's always so painful to resolve conflicts here, I hope I got them right.
2003-04-20Backporting from the trunk.bwarsaw1-9/+15
2003-04-19Backport from the trunk, and catalog regeneration.bwarsaw2-14/+23
2003-04-07Backporting from trunk.bwarsaw1-15/+24
2003-03-31Backporting from trunkbwarsaw3-7/+9
2003-03-31Backporting SF patch #683906, add $DESTDIR to install target, bybwarsaw1-2/+3
Ademar de Souza Reis Jr
2003-02-08Backporting from the trunk.bwarsaw4-78/+166
2003-01-10Copyright years.bwarsaw1-4/+4
2003-01-10safe_strftime(): Watch out for TypeError coming back from strftime().bwarsaw1-1/+1
2003-01-07Copyright yearsbwarsaw1-4/+4
2003-01-07process(): Ben Gertzfield idea to add "Content-Disposition: inline"bwarsaw1-2/+6
header to the headers and footers parts as a hint to persnickety clients (not mentioning Outlook here) that the text should be displayed inline instead of as attachments. It does no harm so even if it doesn't completely fix the problem it sounds like a good idea.
2003-01-07Copyrightbwarsaw1-4/+4
2003-01-07bulkdeliver(): We've had reports of an IOError (code == 4, interruptedbwarsaw1-1/+1
system call) during the conn.sendmail() call. This just sets the message up to retry later.