diff options
| author | Barry Warsaw | 2009-03-03 10:15:42 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-03-03 10:15:42 -0500 |
| commit | 542a15b5f973565ecca533c9783f44a8bc37a810 (patch) | |
| tree | 904c59465d913a4f80e63cba8f1ec8982509f3ee /src/mailman/styles/default.py | |
| parent | f3ee1ed7d9198d79f7feaf6fb3bb5b6e5ae4bd38 (diff) | |
| download | mailman-542a15b5f973565ecca533c9783f44a8bc37a810.tar.gz mailman-542a15b5f973565ecca533c9783f44a8bc37a810.tar.zst mailman-542a15b5f973565ecca533c9783f44a8bc37a810.zip | |
Diffstat (limited to 'src/mailman/styles/default.py')
| -rw-r--r-- | src/mailman/styles/default.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mailman/styles/default.py b/src/mailman/styles/default.py index ec8d8c776..5bc19e85a 100644 --- a/src/mailman/styles/default.py +++ b/src/mailman/styles/default.py @@ -52,12 +52,15 @@ class DefaultStyle: """See `IStyle`.""" # For cut-n-paste convenience. mlist = mailing_list + # List identity. + mlist.real_name = mlist.list_name.capitalize() + mlist.list_id = u'{0.list_name}.{0.host_name}'.format(mlist) + mlist.include_rfc2369_headers = True + mlist.include_list_post_header = True # Most of these were ripped from the old MailList.InitVars() method. mlist.volume = 1 mlist.post_id = 1 mlist.new_member_options = 256 - # This stuff is configurable - mlist.real_name = mlist.list_name.capitalize() mlist.respond_to_post_requests = True mlist.advertised = True mlist.max_num_recipients = 10 @@ -92,8 +95,6 @@ from: .*@uplinkpro.com mlist.admin_member_chunksize = 30 mlist.administrivia = True mlist.preferred_language = 'en' - mlist.include_rfc2369_headers = True - mlist.include_list_post_header = True mlist.collapse_alternatives = True # Digest related variables mlist.digestable = True |
