2013-04-18 18:04:40 |
Stephen A. Goss |
description |
searching all the code (mailman-3.0.0b3) (with ack) for "tomoderators" returns this:
$ ack -ai tomoderators
src/mailman/bin/checkdbs.py
202: msg.send(mlist, **{'tomoderators': True})
src/mailman/chains/hold.py
241: nmsg.send(mlist, **dict(tomoderators=True))
src/mailman/app/moderator.py
228: msg.send(mlist, tomoderators=True)
299: msg.send(mlist, tomoderators=True)
I can't see where this option is actually used. In practice, the moderation notification sent from hold.py in line 241 just goes to everyone in the mailing list, not the moderators. |
searching all the code (mailman-3.0.0b3) (with ack) for "tomoderators" returns this:
$ ack -ai tomoderators
src/mailman/bin/checkdbs.py
202: msg.send(mlist, **{'tomoderators': True})
src/mailman/chains/hold.py
241: nmsg.send(mlist, **dict(tomoderators=True))
src/mailman/app/moderator.py
228: msg.send(mlist, tomoderators=True)
299: msg.send(mlist, tomoderators=True)
I can't see where this option is actually used. In practice, the moderation notification sent from hold.py in line 241 just goes to the list owner, not the moderators. |
|