diff options
author | Mark Sapiro <msapiro@value.net> | 2013-03-10 20:27:18 -0700 |
---|---|---|
committer | Mark Sapiro <msapiro@value.net> | 2013-03-10 20:27:18 -0700 |
commit | b056d1850e44ab2cb6827e2b1a4f0d451459e9eb (patch) | |
tree | 4a2ff54708a9a1dc894a7f22ef48749dc2be12c8 /Mailman/Handlers/ToDigest.py | |
parent | ce42aaef80d28b0d847d2fa44a3b05eb5b0634bd (diff) | |
download | mailman2-b056d1850e44ab2cb6827e2b1a4f0d451459e9eb.tar.gz mailman2-b056d1850e44ab2cb6827e2b1a4f0d451459e9eb.tar.xz mailman2-b056d1850e44ab2cb6827e2b1a4f0d451459e9eb.zip |
Setting digest_size_threshhold to zero now means no digests will be
sent based on size instead of a digest being sent with every post.
Diffstat (limited to 'Mailman/Handlers/ToDigest.py')
-rw-r--r-- | Mailman/Handlers/ToDigest.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Mailman/Handlers/ToDigest.py b/Mailman/Handlers/ToDigest.py index edbf40dc..2027a46c 100644 --- a/Mailman/Handlers/ToDigest.py +++ b/Mailman/Handlers/ToDigest.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2011 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2013 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -86,7 +86,8 @@ def process(mlist, msg, msgdata): # whether the size threshold has been reached. mboxfp.flush() size = os.path.getsize(mboxfile) - if size / 1024.0 >= mlist.digest_size_threshhold: + if (mlist.digest_size_threshhold > 0 and + size / 1024.0 >= mlist.digest_size_threshhold): # This is a bit of a kludge to get the mbox file moved to the digest # queue directory. try: |