diff options
Diffstat (limited to 'src/mailman/rules/approved.py')
| -rw-r--r-- | src/mailman/rules/approved.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mailman/rules/approved.py b/src/mailman/rules/approved.py index 248c3f73e..ff82145a4 100644 --- a/src/mailman/rules/approved.py +++ b/src/mailman/rules/approved.py @@ -58,6 +58,8 @@ class Approved: def check(self, mlist, msg, msgdata): """See `IRule`.""" + if mlist.moderator_password is None: + return False # See if the message has an Approved or Approve header with a valid # moderator password. Also look at the first non-whitespace line in # the file to see if it looks like an Approved header. |
