Log in

View Full Version : Disabled outgoing emails on test forum


kronnos
01-22-2014, 11:30 PM
When setting up a test forum, how can i make sure no emails are going out to members about anything subscription related or other notifications?

Thanks!

ozzy47
01-22-2014, 11:47 PM
ACP --> Settings --> Options --> Email Options, set the Enable Email features to NO, and also Allow Users to Email Other Members to NO

kronnos
01-23-2014, 12:54 AM
Thanks!

ozzy47
01-23-2014, 12:57 AM
Not a problem, glad to help. :)

TheLastSuperman
01-23-2014, 01:54 AM
You can also edit config.php and add this code directly below <?php to disable email on a test site:

define('DISABLE_MAIL', 1);

Will resemble:
<?php
define('DISABLE_MAIL', 1);

ozzy47
01-23-2014, 02:03 AM
Ummm the // should not be in the second code box.

TheLastSuperman
01-23-2014, 02:10 AM
Ummm the // should not be in the second code box.

What // ?

:p

:p

jk jk I removed it, what I get for copy/pasting I should have just been a man and typed it out manually lol!

ozzy47
01-23-2014, 02:18 AM
I know nothing. :)

TheLastSuperman
01-23-2014, 03:06 AM
I know nothing. :)

How'd you know what I say to my wife? :rolleyes:

kronnos
01-23-2014, 08:07 PM
You can also edit config.php and add this code directly below <?php to disable email on a test site:

define('DISABLE_MAIL', 1);

Will resemble:
<?php
define('DISABLE_MAIL', 1);

Awesome, this will make things even easier!