~sambuddhabasu1/mailman/fix_mailman_run_error

« back to all changes in this revision

Viewing changes to mailman/Defaults.py

  • Committer: Barry Warsaw
  • Date: 2008-02-27 06:26:18 UTC
  • Revision ID: barry.warsaw@canonical.com-20080227062618-jkgjq26tt39heluh
Bite the bullet: rename the Mailman package to mailman.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
from datetime import timedelta
21
21
 
22
 
from Mailman.interfaces import ReplyToMunging
 
22
from mailman.interfaces import ReplyToMunging
23
23
 
24
24
 
25
25
 
61
61
# shortcut "favicon").  Otherwise, this should contain the URL base path to
62
62
# the logo images (and must contain the trailing slash)..  If you want to
63
63
# disable Mailman's logo footer altogther, hack
64
 
# Mailman/htmlformat.py:MailmanLogo(), which also contains the hardcoded links
 
64
# mailman/htmlformat.py:MailmanLogo(), which also contains the hardcoded links
65
65
# and image names.
66
66
IMAGE_LOGOS = '/icons/'
67
67
 
273
273
# a MailList object and a Message object.  It should raise
274
274
# Errors.DiscardMessage if it wants to throw the message away.  Otherwise it
275
275
# should modify the Message object as necessary.
276
 
ARCHIVE_SCRUBBER = 'Mailman.Handlers.Scrubber'
 
276
ARCHIVE_SCRUBBER = 'mailman.Handlers.Scrubber'
277
277
 
278
 
# Control parameter whether Mailman.Handlers.Scrubber should use message
 
278
# Control parameter whether mailman.Handlers.Scrubber should use message
279
279
# attachment's filename as is indicated by the filename parameter or use
280
280
# 'attachement-xxx' instead.  The default is set True because the applications
281
281
# on PC and Mac begin to use longer non-ascii filenames.  Historically, it
375
375
# must be a string naming an IHandler.
376
376
DELIVERY_MODULE = 'smtp-direct'
377
377
 
378
 
# MTA should name a module in Mailman/MTA which provides the MTA specific
 
378
# MTA should name a module in mailman/MTA which provides the MTA specific
379
379
# functionality for creating and removing lists.  Some MTAs like Exim can be
380
380
# configured to automatically recognize new lists, in which case the MTA
381
381
# variable should be set to None.  Use 'Manual' to print new aliases to
456
456
# accepted by your NNTP server.  Some servers like INN reject messages
457
457
# containing prohibited headers, or duplicate headers.  The NNTP server may
458
458
# reject the message for other reasons, but there's little that can be
459
 
# programmatically done about that.  See Mailman/Queue/NewsRunner.py
 
459
# programmatically done about that.  See mailman/Queue/NewsRunner.py
460
460
#
461
461
# First, these headers (case ignored) are removed from the original message.
462
462
NNTP_REMOVE_HEADERS = ['nntp-posting-host', 'nntp-posting-date', 'x-trace',