diff options
| author | Barry Warsaw | 2010-08-11 09:02:29 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2010-08-11 09:02:29 -0400 |
| commit | b291fddae14ea2e52874e643bac263375b00d708 (patch) | |
| tree | 5d6d00400deed2e4beb2d2879feff92eea79d313 /src/mailman/rest/docs | |
| parent | 74be65c1ac8fcfd206ad26d9c61b8521fc86bda2 (diff) | |
| download | mailman-b291fddae14ea2e52874e643bac263375b00d708.tar.gz mailman-b291fddae14ea2e52874e643bac263375b00d708.tar.zst mailman-b291fddae14ea2e52874e643bac263375b00d708.zip | |
Expose anonymous_list and advertised in the IMailingList interface and in the configuration REST API.
Diffstat (limited to 'src/mailman/rest/docs')
| -rw-r--r-- | src/mailman/rest/docs/configuration.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/mailman/rest/docs/configuration.txt b/src/mailman/rest/docs/configuration.txt index dfe2c023e..dc28c5ce9 100644 --- a/src/mailman/rest/docs/configuration.txt +++ b/src/mailman/rest/docs/configuration.txt @@ -17,6 +17,8 @@ All readable attributes for a list are available on a sub-resource. ... 'test-one@example.com/config') admin_immed_notify: True admin_notify_mchanges: False + advertised: True + anonymous_list: False bounces_address: test-one-bounces@example.com collapse_alternatives: True convert_html_to_plaintext: False @@ -59,6 +61,8 @@ writable attributes in one request. ... dict( ... admin_immed_notify=False, ... admin_notify_mchanges=True, + ... advertised=False, + ... anonymous_list=True, ... real_name='Fnords', ... include_rfc2369_headers=False, ... include_list_post_header=False, @@ -80,6 +84,8 @@ These values are changed permanently. ... 'test-one@example.com/config') admin_immed_notify: False admin_notify_mchanges: True + advertised: False + anonymous_list: True ... collapse_alternatives: False convert_html_to_plaintext: True @@ -103,6 +109,8 @@ be included. It is an error to leave one out (e.g. `pipeline`)... ... dict( ... #admin_immed_notify=False, ... admin_notify_mchanges=True, + ... advertised=False, + ... anonymous_list=True, ... real_name='Fnords', ... include_rfc2369_headers=False, ... include_list_post_header=False, @@ -125,6 +133,8 @@ be included. It is an error to leave one out (e.g. `pipeline`)... ... a_mailing_list_attribute=False, ... admin_immed_notify=False, ... admin_notify_mchanges=True, + ... advertised=False, + ... anonymous_list=True, ... real_name='Fnords', ... include_rfc2369_headers=False, ... include_list_post_header=False, @@ -146,6 +156,8 @@ It is also an error to spell an attribute value incorrectly... ... dict( ... admin_immed_notify='Nope', ... admin_notify_mchanges=True, + ... advertised=False, + ... anonymous_list=True, ... real_name='Fnords', ... include_rfc2369_headers=False, ... include_list_post_header=False, @@ -167,6 +179,8 @@ It is also an error to spell an attribute value incorrectly... ... dict( ... admin_immed_notify=False, ... admin_notify_mchanges=True, + ... advertised=False, + ... anonymous_list=True, ... real_name='Fnords', ... include_rfc2369_headers=False, ... include_list_post_header=False, |
