Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

we are the list #233

Merged
merged 1 commit into from
Mar 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading