Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Changes from Michael Ranner <mranner@jawa.at>. -Thanks! | pheinlein | 2004-02-19 | 1 | -15/+14 | |
| | ||||||
* | InitTempVars(): Initialize _full_path to the empty string, not None. | bwarsaw | 2004-02-19 | 1 | -1/+1 | |
| | ||||||
* | Helpful links as suggested by Martin Mokrejs. | bwarsaw | 2004-02-17 | 1 | -0/+5 | |
| | ||||||
* | Small clarification as suggested by Martin Mokrejs. | bwarsaw | 2004-02-17 | 1 | -1/+2 | |
| | ||||||
* | Croatian updates from Nino Katic | bwarsaw | 2004-02-17 | 5 | -2586/+1489 | |
| | ||||||
* | pot merge. mostly line numbers and formatting. | bwarsaw | 2004-02-17 | 1 | -1479/+2576 | |
| | ||||||
* | _escape(): Everything except the 'info' variable gets the normal web-safe | bwarsaw | 2004-02-17 | 1 | -8/+19 | |
| | | | | | escaping. 'info' sanitizes just <script> and </script> tags. This partially closes bugs 870028 and 881369. | |||||
* | handleForm(): Call out to self._escape() to make any entered data web-safe. | bwarsaw | 2004-02-17 | 1 | -3/+7 | |
| | | | | | This allows subclasses to override where necessary. The default implementaton is to call Utils.websafe(). | |||||
* | main(): It's possible that if you're logged in as the list admin, you can get | bwarsaw | 2004-02-17 | 1 | -3/+5 | |
| | | | | | | | to the end of the function trying to present the options page for a non-existant user, causing a traceback. At the last second, do one more isMember() check and return the loginpage if the address isn't a member of the list. | |||||
* | Rewritten, simplified, and made more bullet-proof. The file read/written is | bwarsaw | 2004-02-17 | 1 | -77/+66 | |
| | | | | | | | | | | | | | | | | | | | now a pickle instead the less secure marshal. Other changes: __filename(): Removed. We'll use the instance variable __filename instead. __opendb(): Simplified by removing upgrade logic largely duplicated in _UpdateRecords(). __closedb(): Use pickles and the __filename instance variable. __request_id(): Removed this since it wasn't thread-safe. It didn't require the acquisition of the list lock. Replaced with __nextid() which not only asserts the list lock, but also ensures that the id returned will be unique. HoldMessage(): Always flush and fsync the heldmsg file. Various other code improvement. | |||||
* | The probe template. | bwarsaw | 2004-02-10 | 1 | -0/+28 | |
| | ||||||
* | main(): Use the new pending database interface. | bwarsaw | 2004-02-10 | 1 | -3/+4 | |
| | ||||||
* | update_qfiles(), ext_read(), dequeue(): More gross stuff to upgrade the | bwarsaw | 2004-02-10 | 1 | -29/+227 | |
| | | | | | | | | | separate .db and .msg qfiles to the single .pck file. update_pending(): Updates the global data/pending.pck file to the per-list .pck files as best as possible. main(): update the qfiles and pending database. | |||||
* | main(): Extend pickle file dumping to print every object in the pickle file. | bwarsaw | 2004-02-10 | 1 | -10/+32 | |
| | ||||||
* | enqueue(), dequeue(), files(): Implementation of new, more efficient, | bwarsaw | 2004-02-10 | 1 | -226/+37 | |
| | | | | | | | | | | | one-file-per-queued-message architecture. The message object and metadata dictionary are now written to the same .pck file -- in that order -- instead of to separate files which were more complicated to manage. dequeue() especially simplifies considerably. Also, get rid of the special _Switchboard hack, as well as the MarshalSwitchboard, ASCIISwitchboard, and BSDDBSwitchboard implementations. Also get rid of the DumperSwitchboard class. | |||||
* | _dispose(), verp_probe(): Add logic to parse and handle probe bounce verps. | bwarsaw | 2004-02-10 | 1 | -1/+55 | |
| | ||||||
* | hold_for_approval(): Convert to the new pending database interface. | bwarsaw | 2004-02-10 | 1 | -2/+2 | |
| | ||||||
* | main(), subscription_cancel(), unsubscription_cancel(), addrchange_cancel() | bwarsaw | 2004-02-10 | 1 | -17/+36 | |
| | | | | | | | | addrchange_confirm(), heldmsg_cancel(), heldmsg_confirm(), reenable_confirm(): Convert to the new pending database interface. expunge(): A helper function which ensures that the list is locked before expunging an item from the confirmation database. | |||||
* | Bump the version number to 2.1.5a3. Also bump the PENDING_FILE_SCHEMA_VERSION | bwarsaw | 2004-02-10 | 1 | -4/+4 | |
| | | | | to indicate that we're now saving things in a per-list database. | |||||
* | Simplification and re-implementation as a per-list (and thus MailList mixin | bwarsaw | 2004-02-10 | 1 | -231/+132 | |
| | | | | class), pending database. | |||||
* | MailList: Add the Pending.Pending class to the list of base classes. | bwarsaw | 2004-02-10 | 1 | -11/+10 | |
| | | | | | InviteNewMember(), AddMember(), ChangeMemberAddress(), ProcessConfirmation(), ConfirmUnsubscription(): Convert to the new pending database interface. | |||||
* | sendProbe(): Method implementing the actual sending of the probe message to a | bwarsaw | 2004-02-10 | 1 | -1/+39 | |
| | | | | member whose bounce score is greater than the threshold. | |||||
* | VERP_PROBE_FORMAT, VERP_PROBE_REGEXP: A new template and pattern for handling | bwarsaw | 2004-02-10 | 1 | -32/+7 | |
| | | | | | | | | | | | | the probe verps, which are different than the normal message verps because the former has a token hash in the address extension. METAFMT_MARSHAL, METAFMT_BSDDB_NATIVE, METAFMT_ASCII, METADATA_FORMAT: Remove all this since they don't make sense with the new rewritten single-file qrunner architecture. PENDINGDB_LOCK_TIMEOUT, PENDINGDB_LOCK_ATTEMPTS: These are no longer necessary given the new per-list pending database. | |||||
* | Hook in the new bounce processing actions. Specifically, | bwarsaw | 2004-02-10 | 1 | -7/+10 | |
| | | | | | | | | | | | registerBounce(): When the bounce score is higher than the threshold, instead of disabling the address right way, we send a probe message, then we reset the bounce score to zero. disableBouncingMember(): Use the new pending db interface and update the log messages. sendNextNotification(): Use the new pending db interface. | |||||
* | Describe the changes in the qrunner system, bin/dumpdb, the bounce processor | bwarsaw | 2004-02-10 | 1 | -1/+22 | |
| | | | | and the pending database. | |||||
* | updates | bwarsaw | 2004-02-10 | 4 | -15/+15 | |
| | ||||||
* | Some updates by Martin Mokrejs. | bwarsaw | 2004-02-03 | 1 | -10/+17 | |
| | ||||||
* | Added some clarification and improvements by Martin Mokrejs. | bwarsaw | 2004-02-03 | 1 | -2/+12 | |
| | ||||||
* | Added helpful comment. | bwarsaw | 2004-02-03 | 1 | -1/+2 | |
| | ||||||
* | Typo fix by Todd <Freedom_Lover> | bwarsaw | 2004-02-03 | 1 | -1/+1 | |
| | ||||||
* | A fix to a bogosity in the header, which would cause Mailman running under | bwarsaw | 2004-01-31 | 1 | -1/+0 | |
| | | | | | | | Python 2.2.2 or earlier to crash. Python 2.2.3 and later are not susceptible to this problem. Fixes SF # 878078. | |||||
* | Updated Estonian messages | duke9 | 2004-01-26 | 1 | -153/+622 | |
| | ||||||
* | A missing / sign makes unreachable the desired page. The bug was found by ↵ | szilardv | 2004-01-26 | 1 | -1/+1 | |
| | | | | Karoly Segesdi. Thanks. | |||||
* | New file in 2.1.4 ... Archive Table of Contents --- No mbox link | tkikuchi | 2004-01-23 | 1 | -0/+18 | |
| | ||||||
* | Forgot to run transcheck. Fixed. | tkikuchi | 2004-01-23 | 1 | -2/+2 | |
| | ||||||
* | Forgot to run trancheck. Fixed. | tkikuchi | 2004-01-23 | 1 | -3/+3 | |
| | ||||||
* | ** Big Change in Japanese Translation ** | tkikuchi | 2004-01-23 | 38 | -1761/+1666 | |
| | | | | | | | Brushing up Mailman Japanese translation by YASUDA Yukihiro. Refinements are done on technical term usages and more natural japanese while the older was like straight word-to-word translation. Many thanks are going to Mr. Yasuda because he is a professional writer. | |||||
* | _dispose(): Fix typo in comparison to site-list owner address. Fix given by | bwarsaw | 2004-01-23 | 1 | -2/+2 | |
| | | | | SHIGENO Kazutaka. | |||||
* | updated comments | bwarsaw | 2004-01-22 | 1 | -1/+3 | |
| | ||||||
* | bulkdeliver(): Add a comment about recent alternative interpretations for | bwarsaw | 2004-01-22 | 1 | -1/+4 | |
| | | | | munging Sender and Errors-To headers. | |||||
* | little typos, tnx to Claudio Cattazzo | pioppo | 2004-01-22 | 1 | -4/+4 | |
| | ||||||
* | Add a link to UW's Mailman pages. | bwarsaw | 2004-01-22 | 4 | -4/+18 | |
| | | | | Add some new users. | |||||
* | whitespace normalization | bwarsaw | 2004-01-20 | 1 | -3/+3 | |
| | ||||||
* | GetConfigInfo(): Elaborate on the details for bounce_score_threshold. | bwarsaw | 2004-01-20 | 1 | -2/+14 | |
| | ||||||
* | Fixing a nasty typo. | szilardv | 2004-01-14 | 1 | -1/+1 | |
| | ||||||
* | Updating a few docs. | szilardv | 2004-01-14 | 3 | -11/+15 | |
| | ||||||
* | + Updated Estonian messages | duke9 | 2004-01-12 | 1 | -70/+262 | |
| | ||||||
* | Post update for 2.1.4 translation | tkikuchi | 2004-01-12 | 1 | -58/+41 | |
| | ||||||
* | Updated Estonian messages | duke9 | 2004-01-10 | 1 | -166/+419 | |
| | ||||||
* | Fix typo | bwarsaw | 2004-01-07 | 1 | -8/+7 | |
| |