How can I change Askbot so it sends Feedback emails to superusers but not staff?
The title says it all. Django has a superuser and staff role, in contrib.auth.models.User.
In my other app (running on the same db), I have some staff member because I need them to access a certain admin page, but I don't want them to receive Askbot's feedback emails :)
Comments
What is the difference between admins and staff? Not sure.
A superuser is one who can do EVERYTHING, had all permissions by default. A staff member can access to the admin site, but can only do things he has permissions for (see permissions in contrib.auth.User)
Right now moderators (User.status = 'm' as you found) and administrators receive feedback by design. We did not make distinction between staff and the admin in askbot.