blob: 4b4bb619abb508934d928ee40e74faae96b109e1 (
plain)
- --- 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
- +"""
|