MRBS的邮箱配置
浏览量:1090
/* Add lines from systemdefaults.inc.php and areadefaults.inc.php below here to change the default configuration. Do _NOT_ modify systemdefaults.inc.php or areadefaults.inc.php. */ // These settings are only used with the "smtp" backend $mail_settings['admin_backend'] = 'smtp'; $smtp_settings['host'] = 'smtp.ss.com'; // SMTP server $smtp_settings['port'] = 25; // SMTP port number $smtp_settings['auth'] = true; // Whether to use SMTP authentication $smtp_settings['secure'] = ''; // Encryption method: '', 'tls' or 'ssl' $smtp_settings['username'] = ''; // Username (if using authentication) $smtp_settings['password'] = '@123'; // Password (if using authentication) $mail_settings['recipients'] = ''; $mail_settings['from'] = '@ss.com'; $mail_settings['admin_on_bookings'] = TRUE; // the addresses defined by $mail_settings['recipients'] below $mail_settings['area_admin_on_bookings'] = TRUE; // the area administrator $mail_settings['room_admin_on_bookings'] = TRUE; // the room administrator $mail_settings['booker'] = TRUE; // the person making the booking $mail_settings['on_new'] = FALSE; // when an entry is created $mail_settings['on_change'] = FALSE; // when an entry is changed $mail_settings['on_delete'] = FALSE; // when an entry is deleted $mail_settings['details'] = TRUE; $mail_settings['debug'] = FALSE; // Where to send the debug output. Can be 'browser' or 'log' (for the error_log) $mail_settings['debug_output'] = 'browser'; $mail_settings['html'] = TRUE; $mail_settings['admin_lang'] = 'zh-cn';
可以开下debug
神回复
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。