﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
19781	Documentation on Django Comments moderation emails doesn't match actual behavior	Mike Shultz	nobody	"django.contrib.comments.moderation(ln:239) currently uses settings.MANAGERS to decide who the recipients of the moderation e-mails are.  This isn't mentioned in the documentation.

However, I'd like to request this to change to sending to all users with the {{{ Can moderate comments }}} permission.  If this would be to resource intensive(querying users every comment post), then I'd like to suggest adding {{{ settings.MODERATORS }}} that would trump {{{ settings.MANAGERS }}} if it exists.

I don't have a good idea for the former, but the latter, a simple change to something like this would help:

{{{
recipient_list = [manager_tuple[1] for manager_tuple in getattr(settings, 'MODERATORS', None) or settings.MANAGERS]
}}}"	New feature	closed	contrib.comments	1.4	Normal	wontfix			Accepted	0	0	0	0	0	0
