Skip to content

Commit

Permalink
Merge pull request #233 from uw-it-aca/task/add-plugin
Browse files Browse the repository at this point in the history
we are the list
  • Loading branch information
matsmats-uw authored Mar 23, 2024
2 parents cef0b9f + ff81bb4 commit ceb90e0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions UWPlugins/styles/styles.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ def apply(self, mailing_list):
super().apply(mailing_list)

# Make modifications on top.
mlist.display_name = 'UW created with our Style'
self.display_name = 'UW created with our Style'
# Mung From
mlist.dmarc_mitigate_action = DMARCMitigateAction.munge_from
self.dmarc_mitigate_action = DMARCMitigateAction.munge_from
# do it for everyone
mlist.dmarc_mitigate_unconditionally = True
self.dmarc_mitigate_unconditionally = True

# archives private and off
mlist.archive_policy = 'private'
self.archive_policy = 'private'

# up the max message size
mlist.max_message_size = 10240
self.max_message_size = 10240

# don't adversite
mlist.advertised = False
self.advertised = False

0 comments on commit ceb90e0

Please sign in to comment.