Here's what diff spit out when I did:
diff Defaults.py mm_defaults.py
19c19 < """Distributed default settings for significant Mailman config variables.
"""Distributed default settings for significant mailman config variables. 47,52d46 < # 1 to use crypt for passwords instead of md5. < # Crypt may not work on all python installs. < # Don't change this value once you have lists running... < # In fact, you should just let configure set this one and leave it alone. < USE_CRYPT = 1 < 86,92d79 < # This variable controlls whether monthly password reminders are sent. < DEFAULT_SEND_REMINDERS = 1 < # Send welcome messages to new users? Probably should keep this set to 1. < DEFAULT_SEND_WELCOME_MSG = 1 < # Wipe sender information, and make it look like the list-admin < # address sends all messages < DEFAULT_ANONYMOUS_LIST = 0 128,130c115,122 < DEFAULT_PLAIN_DIGEST_KEEP_HEADERS = ['message', 'date', 'from', < 'subject', 'to', 'cc', < 'reply-to', 'organization']
# We're only retaining the text file, an external pipermail (andrew's # newest version) is pointed at the retained text copies. ## # 0 = never, 1 = daily, 2 = hourly: ## DEFAULT_ARCHIVE_UPDATE_FREQUENCY = 2 ## # 0 = yearly, 1 = monthly ## DEFAULT_ARCHIVE_VOLUME_FREQUENCY = 0 ## # Retain a flat text mailbox of postings as well as the fancy archives? ## DEFAULT_ARCHIVE_RETAIN_TEXT_COPY = 1 152a145,165 # Enumeration for types of configurable variables in Mailman. Toggle = 1 Radio = 2 String = 3 Text = 4 Email = 5 EmailList = 6 Host = 7 Number = 8
# could add Directory and URL
# Bitfield for user options Digests = 0 # handled by other mechanism, doesn't need a flag. DisableDelivery = 1 DontReceiveOwnPosts = 2 # Non-digesters only AcknowlegePosts = 4 DisableMime = 8 # Digesters only ConcealSubscription = 16
170c183 < PYTHON = '/usr/local/bin/python'
PYTHON = '/usr/bin/python' 178,202d190 < # Don't change anything from here down unless you know what you're doing... < < < # Enumeration for types of configurable variables in Mailman. < Toggle = 1 < Radio = 2 < String = 3 < Text = 4 < Email = 5 < EmailList = 6 < Host = 7 < Number = 8 < < # could add Directory and URL < < < # Bitfield for user options < Digests = 0 # handled by other mechanism, doesn't need a flag. < DisableDelivery = 1 < DontReceiveOwnPosts = 2 # Non-digesters only < AcknowlegePosts = 4 < DisableMime = 8 # Digesters only < ConcealSubscription = 16 < < 216,219c204 < VERSION = '1.0b5' < < # Data file version number < DATA_FILE_VERSION = 3
VERSION = '1.0b4'
Corbett J. Klempay Quote of the Week:
http://www2.acm.jhu.edu/~cklempay "Talent develops in quiet places,
character in the full current of
human life."
PGP Fingerprint: 7DA2 DB6E 7F5E 8973 A8E7 347B 2429 7728 76C2 BEA1
On Wed, Jul 29, 1998 at 10:12:08AM -0400, Corbett J. Klempay wrote: Add the following stuff:
# This variable controlls whether monthly password reminders are sent. DEFAULT_SEND_REMINDERS = 1 # Send welcome messages to new users? Probably should keep this set to 1. DEFAULT_SEND_WELCOME_MSG = 1 # Wipe sender information, and make it look like the list-admin # address sends all messages DEFAULT_ANONYMOUS_LIST = 0
DEFAULT_PLAIN_DIGEST_KEEP_HEADERS = ['message', 'date', 'from', 'subject', 'to', 'cc', 'reply-to', 'organization'] # Data file version number DATA_FILE_VERSION = 3
I realized that the real problem is the name change. Just change the import in mm_cfg.py to Defaults from mm_defaults, and that should have the same effect as adding those lines.
John
"JV" == John Viega <John@list.org> writes:
JV> I realized that the real problem is the name change. Just
JV> change the import in mm_cfg.py to Defaults from mm_defaults,
JV> and that should have the same effect as adding those lines.
Right, dang. We should have included that in the release notes. John, do you think you can start a 1.0b5 release note/patch page off of list.org?
-Barry
participants (3)
-
Barry A. Warsaw
-
Corbett J. Klempay
-
John Viega