summaryrefslogtreecommitdiff
path: root/src/mailman/database
diff options
context:
space:
mode:
authorBarry Warsaw2009-02-17 22:23:12 -0500
committerBarry Warsaw2009-02-17 22:23:12 -0500
commit165f53b5d38850589aa75122ab08c73c7ddcb127 (patch)
treed6c48fb84a7a92f3e82628bb45b96fe2b438c028 /src/mailman/database
parent1f4c4e107f24cbb36110e8cb88908b34bac74b01 (diff)
downloadmailman-165f53b5d38850589aa75122ab08c73c7ddcb127.tar.gz
mailman-165f53b5d38850589aa75122ab08c73c7ddcb127.tar.zst
mailman-165f53b5d38850589aa75122ab08c73c7ddcb127.zip
Eradicate hold_and_cmd_autoresponses.
Diffstat (limited to 'src/mailman/database')
-rw-r--r--src/mailman/database/mailinglist.py5
-rw-r--r--src/mailman/database/mailman.sql1
2 files changed, 0 insertions, 6 deletions
diff --git a/src/mailman/database/mailinglist.py b/src/mailman/database/mailinglist.py
index 605c51cd6..02100eeb8 100644
--- a/src/mailman/database/mailinglist.py
+++ b/src/mailman/database/mailinglist.py
@@ -57,7 +57,6 @@ class MailingList(Model):
# Attributes not directly modifiable via the web u/i
created_at = DateTime()
admin_member_chunksize = Int()
- hold_and_cmd_autoresponses = Pickle()
# Attributes which are directly modifiable via the web u/i. The more
# complicated attributes are currently stored as pickles, though that
# will change as the schema and implementation is developed.
@@ -181,10 +180,6 @@ class MailingList(Model):
# For the pending database
self.next_request_id = 1
self._restore()
- # Max autoresponses per day. A mapping between addresses and a
- # 2-tuple of the date of the last autoresponse and the number of
- # autoresponses sent on that date.
- self.hold_and_cmd_autoresponses = {}
self.personalization = Personalization.none
self.real_name = string.capwords(
SPACE.join(listname.split(UNDERSCORE)))
diff --git a/src/mailman/database/mailman.sql b/src/mailman/database/mailman.sql
index e2a239f1a..3ce9ea515 100644
--- a/src/mailman/database/mailman.sql
+++ b/src/mailman/database/mailman.sql
@@ -51,7 +51,6 @@ CREATE TABLE mailinglist (
host_name TEXT,
created_at TIMESTAMP,
admin_member_chunksize INTEGER,
- hold_and_cmd_autoresponses BLOB,
next_request_id INTEGER,
next_digest_number INTEGER,
admin_responses BLOB,