diff options
| author | J08nY | 2017-07-18 23:34:30 +0200 |
|---|---|---|
| committer | J08nY | 2017-07-18 23:42:20 +0200 |
| commit | fb9f42cd1ebdded7c3c579fd8046d37ee0a85849 (patch) | |
| tree | d000d30056f76ddf2966fc459595ca6fe26646ad /src/mailman_pgp/model | |
| parent | 1bdb88b7267652b3fa9bb0dcc0cec938f1a3725a (diff) | |
| download | mailman-pgp-fb9f42cd1ebdded7c3c579fd8046d37ee0a85849.tar.gz mailman-pgp-fb9f42cd1ebdded7c3c579fd8046d37ee0a85849.tar.zst mailman-pgp-fb9f42cd1ebdded7c3c579fd8046d37ee0a85849.zip | |
Add outgoing signing and encryption via custom Delivery classes.
Diffstat (limited to 'src/mailman_pgp/model')
| -rw-r--r-- | src/mailman_pgp/model/list.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mailman_pgp/model/list.py b/src/mailman_pgp/model/list.py index da542de..ad031c5 100644 --- a/src/mailman_pgp/model/list.py +++ b/src/mailman_pgp/model/list.py @@ -57,6 +57,7 @@ class PGPMailingList(Base): # Encryption related properties nonencrypted_msg_action = Column(Enum(Action), default=Action.reject) + encrypt_outgoing = Column(Boolean, default=True) def __init__(self, mlist): super().__init__() |
