Changeset 7843 for trunk


Ignore:
Timestamp:
Apr 18, 2010, 11:00:19 PM (15 years ago)
Author:
rick
Message:

Eeks, we sended over a 1000 message to test@…, example.org is the domain to be used for this matter :-)

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/config.php

    r7842 r7843  
    2323
    2424
    25 $config['mail']                                 = 'test@test.com';
     25$config['mail']                                 = 'receipient@example.org';
    2626
    2727/*
  • trunk/src/inc/LogHandler.class.php

    r7842 r7843  
    2929
    3030/*
    31  * Actions on log levels
     31 * XXX: Actions on log levels, needs to go to the config
    3232 */
    3333define('LOG_LEVEL_ECHO', SYSLOG_DEBUG);
    3434define('LOG_LEVEL_WRITE', SYSLOG_DEBUG);
    35 define('LOG_LEVEL_MAIL', SYSLOG_DEBUG);
     35define('LOG_LEVEL_MAIL', SYSLOG_EMERG);
    3636
    3737class LogHandler {
     
    116116                }
    117117
     118                /* XXX: Sends email out for every line, instead of all the lines of the current output */
    118119                if ($logno <= LOG_LEVEL_MAIL) {
    119120                        global $config;
Note: See TracChangeset for help on using the changeset viewer.