Closed (fixed)
Project:
Comment Notify
Version:
6.x-1.4
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
17 Jun 2010 at 21:15 UTC
Updated:
28 Jul 2011 at 19:01 UTC
We've got some very active nodes, and the amount of email is annoying some people. Is there a way to either change one subscriber's status from all comments to just replies, or to make this change for all subscribers? I've tried turning off the "available subscription mode" of "All comments," but it appears that anyone who signed up in this way initially is still getting slammed by email for all comments.
Thanks for any advice.
AD
Comments
Comment #1
gregglesSee the comment_notify table:
select * from comment_notify limit 5;
This query would disable all notifications for node 5.
update comment_notify set notify = 0 where cid in (select cid from comment where nid = 5);
The values for the notify integers are
Comment #2
greggles