-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmm_cfg.patch
More file actions
26 lines (25 loc) · 964 Bytes
/
mm_cfg.patch
File metadata and controls
26 lines (25 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
=== modified file 'Mailman/mm_cfg.py'
--- Mailman/mm_cfg.py 2010-02-01 00:05:49 +0000
+++ Mailman/mm_cfg.py 2010-04-14 15:53:37 +0000
@@ -41,8 +41,22 @@
from Defaults import *
##################################################
+
+#-------------------------------------------------------------------------------
+# Beachbrake specific settings
+import sys
+# Add extra path for python modules (Ubuntu 9.04+ only)
+sys.path.append("/usr/lib/python2.6/dist-packages")
+sys.path.append("/usr/lib/pymodules/python2.6")
+
+#For testing purposes, delete when moved into production
+DEFAULT_EMAIL_HOST = 'localhost.localdomain'
+DEFAULT_URL_HOST = 'localhost.localdomain'
+add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
+#-------------------------------------------------------------------------------
+
# Put YOUR site-specific settings below this line.
-MTA = 'Postfix'
+# MTA = 'Postfix'
MAILMAN_SITE_LIST = 'systers-admin'
PENDING_REQUEST_LIFE = days(30)