I need some more permissions for deleting comments on a specific module. Like "Can delete own comments on '$node->type'" and "Can delete all comments on '$node->type' if node owner"

Is there an existing module for this?

Comments

cog.rusty’s picture

Not much. There is a http://drupal.org/project/usercomment module which allows a node's author to delete comments, and there are several ongoing discussions for Drupal 7.

If you really need control over comments the most realistic solution is to use nodes for comments (http://drupal.org/project/nodecomment) together with some access control module (e.g. http://drupal.org/project/content_access). Of course this means that you will need to rethink how you use anything relying on regular comments (such as the forum module).