Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added Richard Barrett's bin/rb-archfix script to reduce Pipermail | bwarsaw | 2003-12-24 | 2 | -2/+4 |
| | | | | archive bloat. Closes SF bug #835332. | ||||
* | finished_update_article(): Richard Barrett's fix to reduce Pipermail | bwarsaw | 2003-12-24 | 1 | -0/+9 |
| | | | | | | | | | | | | | archive bloat by deleting the html_body attribute on Article objects. Closes SF bug #835332. This is a stub in the base class. _update_thread_index(): Call finished_update_article() when done. store_article(): squirrel away the html_body value when pickling the article. This only reduces bloat on new articles. See bin/rb-archfix to clean up older archives. | ||||
* | finished_update_article(): Richard Barrett's fix to reduce Pipermail | bwarsaw | 2003-12-24 | 1 | -0/+6 |
| | | | | | | | | archive bloat by deleting the html_body attribute on Article objects. Closes SF bug #835332. This only reduces bloat on new articles. See bin/rb-archfix to clean up older archives. | ||||
* | SCRIPTS: Add Richard Barrett's script to fix Pipermail archive bloat | bwarsaw | 2003-12-24 | 1 | -1/+1 |
| | | | | | | on existing archives. Closes SF bug #835332. Note, you have to re-run configure to pick up this new script. | ||||
* | Richard Barrett's script to fix Pipermail archive bloat on existing | bwarsaw | 2003-12-24 | 1 | -0/+108 |
| | | | | archives. Closes SF bug #835332. | ||||
* | Comment repair. | bwarsaw | 2003-12-22 | 1 | -1/+1 |
| | |||||
* | Cosmetic updates. | szilardv | 2003-12-22 | 1 | -2197/+1354 |
| | |||||
* | Fix comment | bwarsaw | 2003-12-18 | 1 | -2/+1 |
| | |||||
* | uheader(): Added default argument for maxlinelen. | bwarsaw | 2003-12-18 | 1 | -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. | ||||
* | send_i18n_digests(): Configurations can change between the time a | bwarsaw | 2003-12-16 | 1 | -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. | ||||
* | check_privs(): Set the process's supplemental groups to those of the | bwarsaw | 2003-12-14 | 1 | -0/+7 |
| | | | | | | setuid'd user, if os.setgroup() is available (it's not in Python 2.1). Close SF bug #777444 posted by Richard Barrett, identified and solved by Jonas Muerer. | ||||
* | Additions | bwarsaw | 2003-12-13 | 2 | -3/+13 |
| | |||||
* | process(): Quote the description when adding it to the List-ID header, | bwarsaw | 2003-12-13 | 1 | -1/+1 |
| | | | | | in case there are any special characters (in the RFC 2822) in the description. | ||||
* | merged new .pot file. | bwarsaw | 2003-12-13 | 26 | -2527/+3984 |
| | |||||
* | Updated .pot file -- don't upgrade until you see the .po file checkin | bwarsaw | 2003-12-13 | 1 | -3/+3 |
| | | | | message. | ||||
* | Removed references to addlang -- this script doesn't exist. | bwarsaw | 2003-12-13 | 2 | -15/+1 |
| | |||||
* | updates | bwarsaw | 2003-12-13 | 1 | -1346/+2220 |
| | |||||
* | Romanian is now supported | bwarsaw | 2003-12-13 | 2 | -3/+3 |
| | |||||
* | Romanian updates from Stefaniu Criste. | bwarsaw | 2003-12-13 | 43 | -2175/+3396 |
| | |||||
* | Romanian is iso-8859-2 | bwarsaw | 2003-12-13 | 1 | -1/+1 |
| | |||||
* | Romanian support from Stefaniu Criste | bwarsaw | 2003-12-13 | 1 | -1/+1 |
| | |||||
* | Some new additions | bwarsaw | 2003-12-13 | 1 | -1/+3 |
| | |||||
* | handleForm(): Close some cross-site scripting holes found by Dirk | bwarsaw | 2003-12-13 | 2 | -4/+5 |
| | | | | Mueller. | ||||
* | Finally I have finished the translation of the UPGRADING doc. | szilardv | 2003-12-02 | 1 | -202/+348 |
| | |||||
* | Basque updates by pi@beobide.net | bwarsaw | 2003-12-01 | 38 | -4131/+3180 |
| | |||||
* | process(): Update a few email package calls. | bwarsaw | 2003-12-01 | 1 | -5/+11 |
| | |||||
* | Updates for the Hungarian catalog. | szilardv | 2003-12-01 | 1 | -2230/+1378 |
| | |||||
* | Updates | bwarsaw | 2003-12-01 | 4 | -4/+10 |
| | |||||
* | Results.__init__(): It's possible for the Header functions to raise a | bwarsaw | 2003-12-01 | 1 | -4/+9 |
| | | | | | HeaderParseError, so if that happens just ignore the Subject header for command purposes. | ||||
* | Fix a small comment bug. | bwarsaw | 2003-12-01 | 1 | -1/+1 |
| | |||||
* | process(): The implementation of extended header filters via | bwarsaw | 2003-12-01 | 1 | -4/+79 |
| | | | | header_filter_rules. | ||||
* | True/False where appropriate. | bwarsaw | 2003-12-01 | 1 | -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. | ||||
* | True/False where appropriate. | bwarsaw | 2003-12-01 | 1 | -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. | ||||
* | True/False where appropriate. | bwarsaw | 2003-12-01 | 1 | -1/+7 |
| | |||||
* | True/False where appropriate. | bwarsaw | 2003-12-01 | 1 | -18/+19 |
| | | | | handleForm(): Close a very minor, potential CSS hole. | ||||
* | GetConfigInfo(), handleForm(): Added header_filter_rules, a new variable which | bwarsaw | 2003-12-01 | 1 | -2/+114 |
| | | | | | collects regular expression rules to match against the message's outer headers, along with the action to take when a match occurs. | ||||
* | _getValidValue(): Basically ignore HeaderFilter widgets. They'll be handled | bwarsaw | 2003-12-01 | 1 | -0/+2 |
| | | | | in the Privacy.py file. | ||||
* | process(): Catch MMBadPasswordError which gets thrown by ProcessConfirmation() | bwarsaw | 2003-12-01 | 1 | -0/+3 |
| | | | | when the wrong admin password is given in a confirmation message. | ||||
* | subscription_prompt(): Make text and submit button have consistent text. | bwarsaw | 2003-12-01 | 1 | -2/+2 |
| | | | | Closes SF bug # 816410. | ||||
* | get_item_gui_value(): Added a new widget HeaderFilter and associated code to | bwarsaw | 2003-12-01 | 1 | -2/+72 |
| | | | | | | | | build the interface from header_filter_rules. Here you can specify a set of regular expressions to test against a message's (outer) headers. You can also specify the action to take when a rule matches. These are available on Privacy->Spam Filters page. | ||||
* | html_TOC(): If PUBLIC_MBOX is false, use archtocnombox.html which doesn't have | bwarsaw | 2003-12-01 | 1 | -5/+6 |
| | | | | a link to the mbox file. | ||||
* | makelink(), breaklink(): Some coding updates. | bwarsaw | 2003-12-01 | 1 | -14/+23 |
| | | | | | | | InitVars(): Fix the permissions on the empty archive index. Fixes SF bug #835012. CheckHTMLArchiveDir(): Only make the mbox link public if PUBLIC_MBOX is true. | ||||
* | NewVars(): Add header_filter_rules if missing. | bwarsaw | 2003-12-01 | 1 | -0/+1 |
| | |||||
* | Bump version to 2.1.4a0. | bwarsaw | 2003-12-01 | 1 | -4/+4 |
| | | | | Also bump DATA_FILE_VERSION to pick up the new header_filter_rules variable. | ||||
* | True/False where appropriate. | bwarsaw | 2003-12-01 | 1 | -1/+1 |
| | |||||
* | True/False wehre appropriate. | bwarsaw | 2003-12-01 | 1 | -2/+8 |
| | |||||
* | repend(): An interface for putting request data back into the request | bwarsaw | 2003-12-01 | 1 | -4/+19 |
| | | | | database. | ||||
* | InitVars(): Added header_filter_rules for support of the expanded spam | bwarsaw | 2003-12-01 | 1 | -14/+27 |
| | | | | | | | | | filters. ProcessConfirmation(): A fix for bug # 833384, where the incorrect admin password given in a the response to a hold message's confirm attachment would end up discarding the message. Now, an error message is returned to the sender and the held message is re-pended. | ||||
* | RejectMessage.__init__(): Since the notice message is put into the body of the | bwarsaw | 2003-12-01 | 1 | -0/+6 |
| | | | | rejection message, make sure it ends with at least two newlines. | ||||
* | New variable PUBLIC_MBOX which allows the site administrator to disable public | bwarsaw | 2003-12-01 | 1 | -30/+35 |
| | | | | | | access to all list mbox files (this is not a per-list configuration). HeaderFilter: a new widget type to support the expanded spam filtering. |