diff options
| -rw-r--r-- | Mailman/Defaults.py.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index 5724f9492..9c0a3e948 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -444,6 +444,14 @@ Host = 7 Number = 8 FileUpload = 9 +# Held message disposition actions, for use between admindb.py and +# ListAdmin.py. +DEFER = 0 +APPROVE = 1 +REJECT = 2 +DISCARD = 3 +SUBSCRIBE = 4 + # Standard text field width TEXTFIELDWIDTH = 40 |
