diff options
| author | Barry Warsaw | 2012-07-25 23:40:46 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2012-07-25 23:40:46 -0400 |
| commit | 30ecd410ba83dc32ad021a2d2c841761befe3079 (patch) | |
| tree | c485245a23e3fee9af5f74a46bb9ee6a7d5888fd /src/mailman/handlers/docs | |
| parent | b60f54fedab835f214f3c88e990ff3bb098e6cad (diff) | |
| download | mailman-30ecd410ba83dc32ad021a2d2c841761befe3079.tar.gz mailman-30ecd410ba83dc32ad021a2d2c841761befe3079.tar.zst mailman-30ecd410ba83dc32ad021a2d2c841761befe3079.zip | |
Working for SQLite:
include_list_post_header -> allow_list_posts
Also add a bunch more migration tests.
Diffstat (limited to 'src/mailman/handlers/docs')
| -rw-r--r-- | src/mailman/handlers/docs/rfc-2369.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman/handlers/docs/rfc-2369.rst b/src/mailman/handlers/docs/rfc-2369.rst index 875603f88..7eda388c1 100644 --- a/src/mailman/handlers/docs/rfc-2369.rst +++ b/src/mailman/handlers/docs/rfc-2369.rst @@ -86,7 +86,7 @@ Discussion lists, to which any subscriber can post, also have a `List-Post` header which contains the `mailto:` URL used to send messages to the list. >>> mlist.include_rfc2369_headers = True - >>> mlist.include_list_post_header = True + >>> mlist.allow_list_posts = True >>> msg = message_from_string("""\ ... From: aperson@example.com ... @@ -108,7 +108,7 @@ Because the general membership cannot post to these mailing lists, the list owner can set a flag which adds a special `List-Post` header value, according to RFC 2369. - >>> mlist.include_list_post_header = False + >>> mlist.allow_list_posts = False >>> msg = message_from_string("""\ ... From: aperson@example.com ... @@ -132,7 +132,7 @@ List-Id header If the mailing list has a description, then it is included in the ``List-Id`` header. - >>> mlist.include_list_post_header = True + >>> mlist.allow_list_posts = True >>> mlist.description = 'My test mailing list' >>> msg = message_from_string("""\ ... From: aperson@example.com |
