aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Handlers (unfollow)
Commit message (Collapse)AuthorFilesLines
2004-02-10hold_for_approval(): Convert to the new pending database interface.bwarsaw1-2/+2
2004-01-22updated commentsbwarsaw1-1/+3
2004-01-22bulkdeliver(): Add a comment about recent alternative interpretations forbwarsaw1-1/+4
munging Sender and Errors-To headers.
2003-12-26hold_for_approval(): Another part of TK's patch # 865661. Encode thebwarsaw1-2/+7
subject header in the list's preferred character set and make sure it is all on one line, when sent back to the original author.
2003-12-18Fix commentbwarsaw1-2/+1
2003-12-18uheader(): Added default argument for maxlinelen.bwarsaw1-11/+12
process(): Reworked the way we calculate the List-Id header in the face of i18n descriptions which may need to be quoted (if ASCII and containing RFC 2822 special chars). What we do now is RFC 2047 encode just the description part, if there is one, then use formataddr() to combine that with the email address-like list identification.
2003-12-16send_i18n_digests(): Configurations can change between the time abwarsaw1-1/+6
message is originally received and the time the digest is sent. If the configuration changes by setting ARCHIVE_HTML_SANITIZER to 0, a DiscardMessage exception can occur during the scrubbing. Catch this error. Closes SF #860135 with basic solution by Martin Pool.
2003-12-13process(): Quote the description when adding it to the List-ID header,bwarsaw1-1/+1
in case there are any special characters (in the RFC 2822) in the description.
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.