summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Mailman/Handlers/Approve.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Mailman/Handlers/Approve.py b/Mailman/Handlers/Approve.py
index b436ed55e..d5473c9a5 100644
--- a/Mailman/Handlers/Approve.py
+++ b/Mailman/Handlers/Approve.py
@@ -41,9 +41,7 @@ class LoopError(NotApproved, Errors.MMLoopingPost):
def process(mlist, msg):
# short circuits
- if getattr(msg, 'approved', 0) or \
- getattr(msg, 'isdigest', 0) or \
- getattr(msg, 'fromusenet', 0):
+ if getattr(msg, 'approved', 0):
# digests, Usenet postings, and some other messages come
# pre-approved. TBD: we may want to further filter Usenet messages,
# so the test above may not be entirely correct.