summaryrefslogtreecommitdiff
path: root/modules (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* .RegisterBounce(): Missing '%' was making a string format operationklm1998-04-101-12/+11
| | | | | | look like an erroneous application of a non-existent function. Minor spelling change - "relevent_text" => "relevant_text".
* Trivial cosmetic changes - plural "subscribers list" instead of possessiveklm1998-04-101-3/+3
| | | | "subscriber's list".
* Track move of MESSAGE_DECORATION_NOTE from mm-defaults to mm_err.mailman1998-04-101-3/+3
|
* HeadlessDocument(): new variant of Document(), for templates that havemailman1998-04-101-1/+10
| | | | their own <head> section.
* Preparing to package a distribution - add a module docstring andmailman1998-04-095-0/+30
| | | | __version__ info.
* Preparing to package a distribution - add __version__ info.mailman1998-04-091-1/+3
|
* Move MESSAGE_DECORATION_NOTE here from mm-defaults, and move all themailman1998-04-091-4/+29
| | | | | | | messages to below the errors. Preparing to package a distribution - add a module docstring and __version__ info.
* Track move of MESSAGE_DECORATION_NOTE from mm-defaults to mm_err.mailman1998-04-091-3/+3
|
* Move MESSAGE_DECORATION_NOTE to mm_err. (We probably should have amailman1998-04-092-44/+2
| | | | | messages.py file containing various notes, but mm_err will do for now - it's certainly a better choice than mm_defaults.)
* Preparing to package a distribution - add a module docstring andmailman1998-04-097-5/+35
| | | | __version__ info.
* Simplify the __version__ setting to ignore the VERSION var.mailman1998-04-092-2/+2
|
* Preparing to package a distribution - add __version__ info.mailman1998-04-091-0/+2
|
* HTMLFormatObject(): Ok, here's a stab at making the error-protection aklm1998-04-091-11/+8
| | | | | | | | | | | | | | | bit more specific and unobtrusive. Instead of using a bare except to just silently ignore all encompassed formatting bugs, invoke .Format() only for items that hasattr identifies as having the method. For any other items, return the string representation of the item. This way, python objects that are mistakenly expected to behave like containers or whatever will be presented as the python objects they are - making it easier to track down the error, without crashing the presentation process as a whole. Moreover, it may be a non-error - any object with a string representation can be put in an htmlformat container, and show through.
* Some more slight option-description refinement.klm1998-04-091-2/+2
|
* Cleaned up some phrasing.mailman1998-04-091-6/+9
|
* Small refinements of the message_decoration_note.mailman1998-04-092-12/+12
|
* Collapsed a message log line.mailman1998-04-091-3/+2
|
* More refinement of help messages.mailman1998-04-091-29/+32
|
* Add a sub-section header to the privacy options.mailman1998-04-091-0/+2
|
* Link(): Support "target" option, for directing hrefs to other windowsklm1998-04-091-8/+11
| | | | | | (or frames - ptui). Document.Format() - enclose the title in <head>...</head>.
* Refined a few long descriptions (now that i can look at them in aklm1998-04-081-13/+18
| | | | browser).
* Log info about rejected and discarded posts in vette lot file.mailman1998-04-081-3/+16
|
* Refine open-list option descr.klm1998-04-081-1/+2
|
* Refined organization of and included dividers in privacy optionsklm1998-04-081-46/+75
| | | | section.
* Defining error-message vars for use instead of string literals, somailman1998-04-081-1/+4
| | | | | they can be recognized in post script, eg to avoid sending hold messages to spammers.
* Call to SendTextToUser() requires "add_headers" instead of "add_to_headers"mailman1998-04-081-2/+2
|
* Using error-message vars from mm_err, instead of string literals, somailman1998-04-081-4/+4
| | | | | they can be recognized in post script, eg to avoid sending hold messages to spammers.
* A few checkins on the parrot side, in completing this batch ofmailman1998-04-071-0/+3
| | | | | | | checkins. .DoActualRemoval(): Fixed neglect in certain cases to initialize one of the reporting vars.
* Document.Format(): Add capability to designate a bgcolor (and otherklm1998-04-071-4/+11
| | | | attributes) on generated documents.
* Added new-format descriptive header, as string in options list.klm1998-04-071-8/+11
| | | | Elaborated some options with supplementary description.
* New default, SMTPHOST, in preparation to incorporation of john'sklm1998-04-072-2/+46
| | | | | | | | | smtplib in the stead of sendmail. (John, i don't think i'm going to do that immediately, though i'd like to see it done soon.) Including MESSAGE_DECORATION_NOTE describing the useful list-instance attributes that can be included for expansion in messages header and footer texts.
* Added new-format descriptive header, as string in options list.klm1998-04-071-4/+7
| | | | | Tracking change of SendTextToUser() option, errorsto => add_new_header.
* Added new-format descriptive header, as string in options list.klm1998-04-071-0/+2
|
* Substantial refinement of the options mechanism:klm1998-04-071-98/+171
| | | | | | | | | | | | | | | | | | | | | | | | | | - An optional 6th field constitutes an elaboration of the option description. The idea is to have a 'help' link for each short descr that has a long one, which puts the long descr in a help browser. - The option list entry can be a simple string, consitituting a header to be included in the presentation. I refined all the descriptions so those needing the help elaboration got one. (Some of the brief descriptions got more brief, thereby.) I haven't yet put in the help links functionality, but have rectified the admin cgi script for the new format - in the process breaking the different sections from one long, unwieldy page into several subpages. Entirely Disabled "filter_prog" option. It was not implemented, anyway, and it does not seem like a good idea to offer maillist managers the ability to invoke arbitrary routines on the maillist server. Perhaps some repertoire of functions would make sense, dunno. welcome_msg, goodbye_msg initial values are '' instead of None, to be more congruent to the text widget null values. "bad_posters" => "forbidden_posters".
* Refined the 'info' mail command to indicate the list web page, presentklm1998-04-071-3/+13
| | | | the description a bit more tidily.
* .FormatRosterOptionForUser(), .RosterOption() - extracted creation andklm1998-04-071-28/+24
| | | | | formatting of roster object into separate functions, so the object could be used elsewhere.
* Disabled encompassing try-except in HTMLFormatObject, so tracebacksklm1998-04-071-5/+5
| | | | | | | | | | show through, instead of silently failing to show the intended objects. Something in between might be better, where the failing rendition is replaced by a placehold that indicates what failed, but doesn't disrupt the entire computation. However, until that is resolved, the bugs will show, instead of hiding in the cupboards...
* .SendTextToUser(), .DeliverToUser() - use new, generalized add_headersklm1998-04-071-4/+7
| | | | option, instead of specific errors-to.
* SendTextToUser(), DeliverToUser() - Generalized addition of specialklm1998-04-071-6/+9
| | | | | headers to a add_headers optional arg - a list for headers like Errors-To and X-No-Archive.
* .ArchiveFileName(): use the list values, not the defaults! Needing tomailman1998-04-031-2/+6
| | | | | | | | | set one of our internal lists to a dir totally outside the view of the archiver, i realized this was not working right. Still, there is no way to set the values from the web interface - they have to be set intrusively, by loading the list in the interpreter and setting the new values by hand. This may be something to enable in the site-admin interface...
* Some cosmetic refinements of message text, separated themailman1998-04-031-44/+34
| | | | SendSubscribeAck and CreateSubscribeAck for easier debugging.
* Comment noting that the UpdateArchive method is being deprecated inmailman1998-04-031-0/+1
| | | | | favor of an external archiver. (John, i should talk with you to see what you think of this!)
* Use new .DeleteMember() arg to indicate whence this deletion came.mailman1998-04-031-14/+24
| | | | | | Wrapped a bunch of long lines. (Sometime soon the regexps are going to have to be converted to re.)
* Use new .DeleteMember() arg to indicate whence this deletion came.mailman1998-04-021-4/+4
| | | | Correct typo "succeded".
* .DeleteMember(): add optional argument indicating whence the deletionmailman1998-04-021-1/+5
| | | | | came, so we can log it - and log the deletion (in the "subscribe" log).
* Refined presentations for the listinfo page, including a newmailman1998-04-021-22/+37
| | | | replacement item which informs people when the archive is restricted.
* Added .ExtractApproval() method, which returns the validity of themailman1998-04-021-1/+11
| | | | | 'approved' line password, and removes all 'approved' lines from the message as a side effect. Central to the message-approved processing.
* Add IncomingMessage.delitem() method, to remove approved headermailman1998-04-021-0/+15
| | | | | lines. (This maybe incorporated directly in the rfc822 class, in which case this method should eventually be removed...)
* Implement message "approved" line recognition (and stripping!).mailman1998-04-021-1/+15
| | | | | | Add .GetOptionsURL() method. Spell acceptable_aliases option correctly.
* Furthermore, mention the password-sending facility.klm1998-04-021-1/+4
|