summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mailman/commands/docs/info.txt4
-rw-r--r--src/mailman/config/schema.cfg2
-rw-r--r--src/mailman/queue/docs/digester.txt10
3 files changed, 9 insertions, 7 deletions
diff --git a/src/mailman/commands/docs/info.txt b/src/mailman/commands/docs/info.txt
index 53a1d531d..d990b514e 100644
--- a/src/mailman/commands/docs/info.txt
+++ b/src/mailman/commands/docs/info.txt
@@ -10,7 +10,7 @@ script 'mailman info'. By default, the info is printed to standard output.
>>> class FakeArgs:
... output = None
- ... paths = None
+ ... verbose = None
>>> args = FakeArgs()
>>> command.process(args)
@@ -39,7 +39,7 @@ You can also get more verbose information, which contains a list of the file
system paths that Mailman is using.
>>> args.output = None
- >>> args.paths = True
+ >>> args.verbose = True
>>> config.create_paths = False
>>> config.push('fhs', """
... [mailman]
diff --git a/src/mailman/config/schema.cfg b/src/mailman/config/schema.cfg
index adc7784b8..2c2aade12 100644
--- a/src/mailman/config/schema.cfg
+++ b/src/mailman/config/schema.cfg
@@ -614,7 +614,7 @@ mime_digest_keep_headers:
Date From To Cc Subject Message-ID Keywords
In-Reply-To References Content-Type MIME-Version
Content-Transfer-Encoding Precedence Reply-To
- Message
+ Message List-Post
plain_digest_keep_headers:
Message Date From
diff --git a/src/mailman/queue/docs/digester.txt b/src/mailman/queue/docs/digester.txt
index 6bf733b30..1dbf24ec4 100644
--- a/src/mailman/queue/docs/digester.txt
+++ b/src/mailman/queue/docs/digester.txt
@@ -6,7 +6,7 @@ Mailman crafts and sends digests by a separate digest queue runner process.
This starts by a number of messages being posted to the mailing list.
>>> mlist = create_list('test@example.com')
- >>> mlist.digest_size_threshold = 0.5
+ >>> mlist.digest_size_threshold = 0.6
>>> mlist.volume = 1
>>> mlist.next_digest_number = 1
@@ -20,6 +20,7 @@ This starts by a number of messages being posted to the mailing list.
... From: aperson@example.com
... To: xtest@example.com
... Subject: Test message $i
+ ... List-Post: <test@example.com>
...
... Here is message $i
... """).substitute(i=i)
@@ -141,6 +142,7 @@ The MIME digest has lots of good stuff, all contained in the multipart.
From: aperson@example.com
To: xtest@example.com
Subject: Test message 1
+ List-Post: <test@example.com>
<BLANKLINE>
Here is message 1
<BLANKLINE>
@@ -151,6 +153,7 @@ The MIME digest has lots of good stuff, all contained in the multipart.
From: aperson@example.com
To: xtest@example.com
Subject: Test message 2
+ List-Post: <test@example.com>
<BLANKLINE>
Here is message 2
<BLANKLINE>
@@ -161,6 +164,7 @@ The MIME digest has lots of good stuff, all contained in the multipart.
From: aperson@example.com
To: xtest@example.com
Subject: Test message 3
+ List-Post: <test@example.com>
<BLANKLINE>
Here is message 3
<BLANKLINE>
@@ -171,6 +175,7 @@ The MIME digest has lots of good stuff, all contained in the multipart.
From: aperson@example.com
To: xtest@example.com
Subject: Test message 4
+ List-Post: <test@example.com>
<BLANKLINE>
Here is message 4
<BLANKLINE>
@@ -562,9 +567,6 @@ as much and does not want to receive one last digest.
>>> runner.run()
>>> messages = get_queue_messages('virgin')
- >>> len(messages)
- 2
-
>>> mime, rfc1153 = mime_rfc1153(messages)
>>> sorted(mime.msgdata['recipients'])
[u'uperson@example.com', u'xperson@example.com']