summaryrefslogtreecommitdiff
path: root/Mailman/Defaults.py.in
diff options
context:
space:
mode:
authorbwarsaw2001-08-03 21:44:34 +0000
committerbwarsaw2001-08-03 21:44:34 +0000
commita57a7775d6860eb98c85cedc8a604f1dfc782664 (patch)
tree4754754017fda566e06e4e25077cf400bc292626 /Mailman/Defaults.py.in
parentd8fa9982289ea60e7af759f04dd2a9407830f8e9 (diff)
downloadmailman-a57a7775d6860eb98c85cedc8a604f1dfc782664.tar.gz
mailman-a57a7775d6860eb98c85cedc8a604f1dfc782664.tar.zst
mailman-a57a7775d6860eb98c85cedc8a604f1dfc782664.zip
Diffstat (limited to 'Mailman/Defaults.py.in')
-rw-r--r--Mailman/Defaults.py.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in
index d8b118cb3..8aa4c6a31 100644
--- a/Mailman/Defaults.py.in
+++ b/Mailman/Defaults.py.in
@@ -241,6 +241,7 @@ GLOBAL_PIPELINE = [
'CookHeaders',
'ToDigest',
'ToArchive',
+ 'Personalize',
'Decorate',
'AfterDelivery',
'Acknowledge',
@@ -397,6 +398,13 @@ ADMINDB_PAGE_TEXT_LIMIT = 4096
# administrator, via the command line script bin/rmlist.
OWNERS_CAN_DELETE_THEIR_OWN_LISTS = 0
+# Set this variable to 1 to allow list owners to set the "personalized" flags
+# on their mailing lists. Turning these on tells Mailman to send separate
+# email messages to each user instead of batching them together for delivery
+# to the MTA. This gives each member a more personalized message, but can
+# have a heavy impact on the performance of your system.
+OWNERS_CAN_ENABLE_PERSONALIZATION = 0
+
# These define the available types of external message metadata formats, and
# the one to use by default. MARSHAL format uses Python's built-in marshal
# module. BSDDB_NATIVE uses the bsddb module compiled into Python, which