diff options
-rw-r--r-- | mailman/mm_cfg.py-mhonarc.diff | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mailman/mm_cfg.py-mhonarc.diff b/mailman/mm_cfg.py-mhonarc.diff new file mode 100644 index 0000000..4b4bb61 --- /dev/null +++ b/mailman/mm_cfg.py-mhonarc.diff @@ -0,0 +1,18 @@ +--- mm_cfg.py.old 2001-09-04 04:13:13.000000000 +0200 ++++ mm_cfg.py 2002-10-04 13:16:03.000000000 +0200 +@@ -59,3 +59,15 @@ + + # Note - if you're looking for something that is imported from mm_cfg, but you + # didn't find it above, it's probably in Defaults.py. ++ ++PUBLIC_EXTERNAL_ARCHIVER = 1 ++PRIVATE_EXTERNAL_ARCHIVER = 1 ++ ++PUBLIC_EXTERNAL_ARCHIVER = """ ++mkdir -p /var/lib/mailman/archives/private/%(listname)s; ++mhonarc -outdir /var/lib/mailman/archives/private/%(listname)s -idxfname index.html -rcfile /etc/local-COMMON/mailman/mhonarc.mrc -title "%(listname)s List Archive (by Date)" -ttitle "%(listname)s List Archive (Threaded)" -quiet -add ++""" ++PRIVATE_EXTERNAL_ARCHIVER = """ ++mkdir -p /var/lib/mailman/archives/private/%(listname)s; ++mhonarc -outdir /var/lib/mailman/archives/private/%(listname)s -idxfname index.html -rcfile /etc/local-COMMON/mailman/mhonarc.mrc -title "%(listname)s List Archive (by Date)" -ttitle "%(listname)s List Archive (Threaded)" -quiet -add ++""" |