diff options
| author | Barry Warsaw | 2016-09-11 19:51:21 +1200 |
|---|---|---|
| committer | Barry Warsaw | 2016-09-11 19:51:21 +1200 |
| commit | e18e7ac34e8b4b2f88d5987ccb76a39c54c61c0c (patch) | |
| tree | d313d43b1bf35342d4baa3711bb2745dbce82282 /src/mailman/commands/docs | |
| parent | 1db20c856fa192664d09f93caa1045036b4336dd (diff) | |
| download | mailman-e18e7ac34e8b4b2f88d5987ccb76a39c54c61c0c.tar.gz mailman-e18e7ac34e8b4b2f88d5987ccb76a39c54c61c0c.tar.zst mailman-e18e7ac34e8b4b2f88d5987ccb76a39c54c61c0c.zip | |
Diffstat (limited to 'src/mailman/commands/docs')
| -rw-r--r-- | src/mailman/commands/docs/membership.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mailman/commands/docs/membership.rst b/src/mailman/commands/docs/membership.rst index 49e80511d..230b4fb83 100644 --- a/src/mailman/commands/docs/membership.rst +++ b/src/mailman/commands/docs/membership.rst @@ -217,9 +217,12 @@ list. ``unsubscribe`` is an alias for ``leave``. You may be asked to confirm your request. Anne is a member of the ``baker@example.com`` mailing list, when she decides -to leave it. She sends a message to the ``-leave`` address for the list and -is sent a confirmation message for her request. +to leave it. Because the mailing list allows for *open* unsubscriptions +(i.e. no confirmation is needed), when she sends a message to the ``-leave`` +address for the list, she is immediately removed. + >>> from mailman.interfaces.mailinglist import SubscriptionPolicy + >>> mlist_2.unsubscription_policy = SubscriptionPolicy.open >>> results = Results() >>> print(leave.process(mlist_2, msg, {}, (), results)) ContinueProcessing.yes |
