diff options
Diffstat (limited to 'src/mailman/styles/default.py')
| -rw-r--r-- | src/mailman/styles/default.py | 208 |
1 files changed, 34 insertions, 174 deletions
diff --git a/src/mailman/styles/default.py b/src/mailman/styles/default.py index bc67c13f9..7e668973f 100644 --- a/src/mailman/styles/default.py +++ b/src/mailman/styles/default.py @@ -21,191 +21,51 @@ from __future__ import absolute_import, print_function, unicode_literals __metaclass__ = type __all__ = [ - 'DefaultStyle', + 'LegacyDefaultStyle', + 'LegacyAnnounceOnly', ] -# XXX Styles need to be reconciled with lazr.config. - -from datetime import timedelta from zope.interface import implementer -from mailman.core.i18n import _ -from mailman.interfaces.action import Action, FilterAction -from mailman.interfaces.archiver import ArchivePolicy -from mailman.interfaces.bounce import UnrecognizedBounceDisposition -from mailman.interfaces.digests import DigestFrequency -from mailman.interfaces.autorespond import ResponseAction -from mailman.interfaces.mailinglist import Personalization, ReplyToMunging -from mailman.interfaces.nntp import NewsgroupModeration from mailman.interfaces.styles import IStyle +from mailman.styles.base import ( + Announcement, BasicOperation, Bounces, Discussion, Identity, Moderation, + Public) @implementer(IStyle) -class DefaultStyle: - """The default (i.e. legacy) style.""" +class LegacyDefaultStyle( + Identity, BasicOperation, Bounces, Public, Discussion, Moderation): + + """The legacy default style.""" + + name = 'legacy-default' + + def apply(self, mailing_list): + """See `IStyle`.""" + Identity.apply(self, mailing_list) + BasicOperation.apply(self, mailing_list) + Bounces.apply(self, mailing_list) + Public.apply(self, mailing_list) + Discussion.apply(self, mailing_list) + Moderation.apply(self, mailing_list) + + +@implementer(IStyle) +class LegacyAnnounceOnly( + Identity, BasicOperation, Bounces, Public, Announcement, Moderation): + + """Similar to the legacy-default style, but for announce-only lists.""" - name = 'default' + name = 'legacy-announce' def apply(self, mailing_list): """See `IStyle`.""" - # For cut-n-paste convenience. - mlist = mailing_list - # List identity. - mlist.display_name = mlist.list_name.capitalize() - mlist.include_rfc2369_headers = True - mlist.allow_list_posts = True - # Most of these were ripped from the old MailList.InitVars() method. - mlist.volume = 1 - mlist.post_id = 1 - mlist.respond_to_post_requests = True - mlist.advertised = True - mlist.max_num_recipients = 10 - mlist.max_message_size = 40 # KB - mlist.reply_goes_to_list = ReplyToMunging.no_munging - mlist.reply_to_address = '' - mlist.first_strip_reply_to = False - mlist.admin_immed_notify = True - mlist.admin_notify_mchanges = False - mlist.require_explicit_destination = True - mlist.send_welcome_message = True - mlist.send_goodbye_message = True - mlist.bounce_matching_headers = """ -# Lines that *start* with a '#' are comments. -to: friend@public.com -message-id: relay.comanche.denmark.eu -from: list@listme.com -from: .*@uplinkpro.com -""" - mlist.header_matches = [] - mlist.anonymous_list = False - mlist.description = '' - mlist.info = '' - mlist.welcome_message_uri = 'mailman:///welcome.txt' - mlist.goodbye_message_uri = '' - mlist.obscure_addresses = True - mlist.administrivia = True - mlist.preferred_language = 'en' - mlist.collapse_alternatives = True - mlist.convert_html_to_plaintext = False - mlist.filter_action = FilterAction.discard - mlist.filter_content = False - # Digest related variables - mlist.digestable = True - mlist.digest_is_default = False - mlist.mime_is_default_digest = False - mlist.digest_size_threshold = 30 # KB - mlist.digest_send_periodic = True - mlist.digest_header_uri = None - mlist.digest_footer_uri = ( - 'mailman:///$listname/$language/footer-generic.txt') - mlist.digest_volume_frequency = DigestFrequency.monthly - mlist.next_digest_number = 1 - mlist.nondigestable = True - mlist.personalize = Personalization.none - # New sender-centric moderation (privacy) options - mlist.default_member_action = Action.defer - mlist.default_nonmember_action = Action.hold - # Archiver - mlist.archive_policy = ArchivePolicy.public - mlist.emergency = False - mlist.member_moderation_notice = '' - mlist.accept_these_nonmembers = [] - mlist.hold_these_nonmembers = [] - mlist.reject_these_nonmembers = [] - mlist.discard_these_nonmembers = [] - mlist.forward_auto_discards = True - mlist.nonmember_rejection_notice = '' - # Max autoresponses per day. A mapping between addresses and a - # 2-tuple of the date of the last autoresponse and the number of - # autoresponses sent on that date. - mlist.subject_prefix = _('[$mlist.display_name] ') - mlist.header_uri = None - mlist.footer_uri = 'mailman:///$listname/$language/footer-generic.txt' - # Set this to Never if the list's preferred language uses us-ascii, - # otherwise set it to As Needed. - if mlist.preferred_language.charset == 'us-ascii': - mlist.encode_ascii_prefixes = 0 - else: - mlist.encode_ascii_prefixes = 2 - # scrub regular delivery - mlist.scrub_nondigest = False - # automatic discarding - mlist.max_days_to_hold = 0 - # Autoresponder - mlist.autorespond_owner = ResponseAction.none - mlist.autoresponse_owner_text = '' - mlist.autorespond_postings = ResponseAction.none - mlist.autoresponse_postings_text = '' - mlist.autorespond_requests = ResponseAction.none - mlist.autoresponse_request_text = '' - mlist.autoresponse_grace_period = timedelta(days=90) - # Bounces - mlist.forward_unrecognized_bounces_to = ( - UnrecognizedBounceDisposition.administrators) - mlist.process_bounces = True - mlist.bounce_score_threshold = 5.0 - mlist.bounce_info_stale_after = timedelta(days=7) - mlist.bounce_you_are_disabled_warnings = 3 - mlist.bounce_you_are_disabled_warnings_interval = timedelta(days=7) - mlist.bounce_notify_owner_on_disable = True - mlist.bounce_notify_owner_on_removal = True - # This holds legacy member related information. It's keyed by the - # member address, and the value is an object containing the bounce - # score, the date of the last received bounce, and a count of the - # notifications left to send. - mlist.bounce_info = {} - # New style delivery status - mlist.delivery_status = {} - # NNTP gateway - mlist.nntp_host = '' - mlist.linked_newsgroup = '' - mlist.gateway_to_news = False - mlist.gateway_to_mail = False - mlist.nntp_prefix_subject_too = True - # In patch #401270, this was called newsgroup_is_moderated, but the - # semantics weren't quite the same. - mlist.newsgroup_moderation = NewsgroupModeration.none - # Topics - # - # `topics' is a list of 4-tuples of the following form: - # - # (name, pattern, description, emptyflag) - # - # name is a required arbitrary string displayed to the user when they - # get to select their topics of interest - # - # pattern is a required verbose regular expression pattern which is - # used as IGNORECASE. - # - # description is an optional description of what this topic is - # supposed to match - # - # emptyflag is a boolean used internally in the admin interface to - # signal whether a topic entry is new or not (new ones which do not - # have a name or pattern are not saved when the submit button is - # pressed). - mlist.topics = [] - mlist.topics_enabled = False - mlist.topics_bodylines_limit = 5 - # This is a mapping between user "names" (i.e. addresses) and - # information about which topics that user is interested in. The - # values are a list of topic names that the user is interested in, - # which should match the topic names in mlist.topics above. - # - # If the user has not selected any topics of interest, then the rule - # is that they will get all messages, and they will not have an entry - # in this dictionary. - mlist.topics_userinterest = {} - # The processing chain that messages posted to this mailing list get - # processed by. - mlist.posting_chain = 'default-posting-chain' - # The default pipeline to send accepted messages through to the - # mailing list's members. - mlist.posting_pipeline = 'default-posting-pipeline' - # The processing chain that messages posted to this mailing list's - # -owner address gets processed by. - mlist.owner_chain = 'default-owner-chain' - # The default pipeline to send -owner email through. - mlist.owner_pipeline = 'default-owner-pipeline' + Identity.apply(self, mailing_list) + BasicOperation.apply(self, mailing_list) + Bounces.apply(self, mailing_list) + Public.apply(self, mailing_list) + Announcement.apply(self, mailing_list) + Moderation.apply(self, mailing_list) |
