diff options
Diffstat (limited to 'src/mailman/chains/builtin.py')
| -rw-r--r-- | src/mailman/chains/builtin.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mailman/chains/builtin.py b/src/mailman/chains/builtin.py index fc31085f3..c81f6700f 100644 --- a/src/mailman/chains/builtin.py +++ b/src/mailman/chains/builtin.py @@ -62,6 +62,8 @@ class BuiltInChain: ('suspicious-header', LinkAction.defer, None), # Now if any of the above hit, jump to the hold chain. ('any', LinkAction.jump, 'hold'), + # Hold the message if the sender is a moderated member. + ('member-moderation', LinkAction.jump, 'member-moderation'), # Take a detour through the header matching chain, which we'll create # later. ('truth', LinkAction.detour, 'header-match'), |
