summaryrefslogtreecommitdiff
path: root/modules/maillist.py
diff options
context:
space:
mode:
authorviega1998-05-31 04:37:52 +0000
committerviega1998-05-31 04:37:52 +0000
commit30191b957c0e48db05335d81ae928de36a4e9d46 (patch)
tree01f87003fc2451b6bdc74f5c580c6a0593e31928 /modules/maillist.py
parent734c5add91bc45f11173ee7ca0f57ac238f3fe7e (diff)
downloadmailman-30191b957c0e48db05335d81ae928de36a4e9d46.tar.gz
mailman-30191b957c0e48db05335d81ae928de36a4e9d46.tar.zst
mailman-30191b957c0e48db05335d81ae928de36a4e9d46.zip
Diffstat (limited to 'modules/maillist.py')
-rw-r--r--modules/maillist.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/maillist.py b/modules/maillist.py
index 406d1e599..5fc44e499 100644
--- a/modules/maillist.py
+++ b/modules/maillist.py
@@ -38,6 +38,7 @@ from mm_archive import Archiver
from mm_digest import Digester
from mm_security import SecurityManager
from mm_bouncer import Bouncer
+from mm_gateway import GatewayManager
# Note:
# an _ in front of a member variable for the MailList class indicates
@@ -46,7 +47,7 @@ from mm_bouncer import Bouncer
# Use mixins here just to avoid having any one chunk be too large.
class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin,
- Archiver, Digester, SecurityManager, Bouncer):
+ Archiver, Digester, SecurityManager, Bouncer, GatewayManager):
def __init__(self, name=None):
MailCommandHandler.__init__(self)
self._internal_name = name
@@ -175,6 +176,7 @@ class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin,
Archiver.InitVars(self) # has configurable stuff
ListAdmin.InitVars(self)
Bouncer.InitVars(self)
+ GatewayManager.InitVars(self)
# These need to come near the bottom because they're dependent on
# other settings.
@@ -186,6 +188,7 @@ class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin,
config_info = {}
config_info['digest'] = Digester.GetConfigInfo(self)
config_info['archive'] = Archiver.GetConfigInfo(self)
+ config_info['gateway'] = GatewayManager.GetConfigInfo(self)
config_info['general'] = [
"Fundamental list characteristics, including descriptive"