summaryrefslogtreecommitdiff
path: root/Mailman/Defaults.py.in
diff options
context:
space:
mode:
authorbwarsaw2000-09-19 20:22:53 +0000
committerbwarsaw2000-09-19 20:22:53 +0000
commit60e5eb943b0608071b13d7516e4258efa4d08ff2 (patch)
tree0f5b75acb341ea350625ac1e354ad6842b95233a /Mailman/Defaults.py.in
parent5d944534b676ac8a69ca18b7ddad90ff3eb29f15 (diff)
downloadmailman-60e5eb943b0608071b13d7516e4258efa4d08ff2.tar.gz
mailman-60e5eb943b0608071b13d7516e4258efa4d08ff2.tar.zst
mailman-60e5eb943b0608071b13d7516e4258efa4d08ff2.zip
Article.__init__(): Chris Snell's patch for obscuring email addresses
in Pipermail archives. Wrap this in a configuration variable ARCHIVER_OBSCURES_EMAILADDRS because it breaks mailto: urls too. ARCHIVER_OBSCURES_EMAILADDRS defaults to false (no-obscure). Closes SF patch #101476.
Diffstat (limited to 'Mailman/Defaults.py.in')
-rw-r--r--Mailman/Defaults.py.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in
index 8df5bf952..ac37130e6 100644
--- a/Mailman/Defaults.py.in
+++ b/Mailman/Defaults.py.in
@@ -107,6 +107,12 @@ PRIVATE_EXTERNAL_ARCHIVER = 0
# night to generate the txt.gz file. See cron/nightly_gzip for details.
GZIP_ARCHIVE_TXT_FILES = 0
+# Pipermail archives contain the raw email addresses of the posting authors.
+# Some view this as a goldmine for spam harvesters. Set this to false to
+# moderately obscure email addresses, but note that this breaks mailto: URLs
+# in the archives too.
+ARCHIVER_OBSCURES_EMAILADDRS = 0
+
#####