summaryrefslogtreecommitdiff
path: root/Mailman/database/model/mailinglist.py
diff options
context:
space:
mode:
authorBarry Warsaw2007-06-21 10:23:40 -0400
committerBarry Warsaw2007-06-21 10:23:40 -0400
commit6c1ccc236bc24d8b3bb04807ba4b24e8a7a0d18e (patch)
treefe4787d9b79e27ea361b33a4f98a12d2e695f16b /Mailman/database/model/mailinglist.py
parent3a86b40fe4e3b28c2d9f4e3bbd2cc0eeefe31453 (diff)
downloadmailman-6c1ccc236bc24d8b3bb04807ba4b24e8a7a0d18e.tar.gz
mailman-6c1ccc236bc24d8b3bb04807ba4b24e8a7a0d18e.tar.zst
mailman-6c1ccc236bc24d8b3bb04807ba4b24e8a7a0d18e.zip
Diffstat (limited to 'Mailman/database/model/mailinglist.py')
-rw-r--r--Mailman/database/model/mailinglist.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/database/model/mailinglist.py b/Mailman/database/model/mailinglist.py
index cdea9d9f6..4feb64db4 100644
--- a/Mailman/database/model/mailinglist.py
+++ b/Mailman/database/model/mailinglist.py
@@ -21,6 +21,7 @@ from zope.interface import implements
from Mailman.Utils import fqdn_listname, split_listname
from Mailman.configuration import config
from Mailman.interfaces import *
+from Mailman.database.types import EnumType
@@ -136,7 +137,7 @@ class MailingList(Entity):
has_field('private_roster', Boolean),
has_field('real_name', Unicode),
has_field('reject_these_nonmembers', PickleType),
- has_field('reply_goes_to_list', Boolean),
+ has_field('reply_goes_to_list', EnumType),
has_field('reply_to_address', Unicode),
has_field('require_explicit_destination', Boolean),
has_field('respond_to_post_requests', Boolean),