Topic: E-Mail notification by default

Hi there,

can anybody tell me how to set e-mail notification (reply, private message...) by default? Every new registered user got this option "  Subscribe to topics by default when posting. " deactivated.

greetz
Franky

Re: E-Mail notification by default

http://keydogbb.info/img/featurerequest0001.png

You're basically asking for this feature to be added right?

3 (edited by Kahmoon 2009-01-25 10:59)

Re: E-Mail notification by default

hmm not directly. I want users to have the option to enable/disable email notifications. But in users settings its deactivated by default.

http://www.root54.de/files/screenpunbb.jpg

Re: E-Mail notification by default

ah I see smile

maybe in post.php

// Check/uncheck the checkbox for subscriptions depending on scenario
if (!$forum_user['is_guest'] && $forum_config['o_subscriptions'] == '1')
{
    $subscr_checked = false;

hm - tried to find the file where subsciption is default set - but couldn't find it.

lets hope one of the devs looks at this and gives you a thumbs up....

5 (edited by Kahmoon 2009-01-25 11:29)

Re: E-Mail notification by default

when i change post.php this change is permanent for all users. unsubscribing is probably impossible after that?

i think i have to change register.php ($user_info = array())

in database its "auto_notify" field



when i add this in new user query its ignored sad

6 (edited by Kahmoon 2009-01-25 11:37)

Re: E-Mail notification by default

OK...the solution is to set the default value from 0 to 1 in database -> usertable -> auto_notify

Re: E-Mail notification by default

ok cool. good to know.

Re: E-Mail notification by default

smile

Re: E-Mail notification by default

i've subscribed this topic so i can implement this later.
Thanks smile

10

Re: E-Mail notification by default

Kahmoon wrote:

OK...the solution is to set the default value from 0 to 1 in database -> usertable -> auto_notify

Just did this for the first time in phpMyAdmin
- go to  users > structure
- then use edit on right hand side