Disabling E-mail Subscriptions

Disabling E-mail Subscriptions

by Andrew Quernmore -
Number of replies: 2
I would like to know if it is possible to completely disable the subscription function on a moodle forum so that no e-mail is sent to forum posters? I can't find a way to do this except by manually entering the forum as Admin and unsubscribing people. Is there a simpler way? I'd like all forum posts in one particular forum to be read only on site.

Thanks
Average of ratings: -
In reply to Andrew Quernmore

Re: Disabling E-mail Subscriptions

by Dennis Daniels -
I'm not a db expert but I think what you're looking for will be found in the magic of an SQL query.

SELECT `mdl_forum_posts`.`mailed`
FROM mdl_forum_posts
ORDER BY `mdl_forum_posts`.`mailed` ASC

This WILL NOT do what you want it to do... but it may give you a start. I'm trying to create more screencasts on how to get control over the moodle forums. You can ck them out here...
http://video.google.com/videosearch?q=moodle+forum

I'm learning about phpmyadmin:
http://video.google.com/videosearch?q=phpmyadmin&so=0
and hoping that others, smarter than myself, will help out by posting their own screencasts!


If you figure it out, please post your resolution!

good luck
Dennis