These permissions allow you to control what kinds of users are able
to do what sorts of activities on your mailing list.
Non-subscriber Permissions
Permissions granted to users who are not subscribed or logged
in to a sr.ht account. Any permission granted to anonymous
users are granted to subscribers and account holders as well,
unless explicitly revoked from that user.
{% for a in access_type_list %}
{{ perm_checkbox(a, ml.nonsubscriber_permissions , "nonsub") }}
{% endfor %}
{{ valid.summary("list_nonsubscriber_access") }}
Subscriber Permissions
Permissions granted to users who are subscribed to the list.
{% for a in access_type_list %}
{{ perm_checkbox(a, ml.subscriber_permissions , "sub") }}
{% endfor %}
{{ valid.summary("list_subscriber_access") }}
Account Holder Permissions
Permissions granted to logged in holders of sr.ht accounts.
{% for a in access_type_list %}
{{ perm_checkbox(a, ml.account_permissions, "account") }}
{% endfor %}
{{ valid.summary("list_account_access") }}