diff options
author | alecpl <alec@alec.pl> | 2008-08-27 10:58:33 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-08-27 10:58:33 +0000 |
commit | b77d0dd6c5574d9841cd5d040dfcc351a58ccb82 (patch) | |
tree | 6c8e872c3d4be368f2fa631f2421d3935e71ab21 /program/steps | |
parent | d5c539942e3cb4ad623a3f3f0344fc45af371981 (diff) |
- added options to use syslog instead of log file (#1484850)
- added Logging & Debugging section in Installer
- fixed config from $_POST for next installer steps saving
- fixed and re-enabled debug_level setting in installer
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/sendmail.inc | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index 9888c5a97..25d95f949 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -420,19 +420,13 @@ else { if ($CONFIG['smtp_log']) { - $log_entry = sprintf( + write_log('sendmail', sprintf( "[%s] User: %d on %s; Message for %s; %s\n", date("d-M-Y H:i:s O", mktime()), $_SESSION['user_id'], $_SERVER['REMOTE_ADDR'], $mailto, - !empty($smtp_response) ? join('; ', $smtp_response) : ''); - - if ($fp = @fopen($CONFIG['log_dir'].'/sendmail', 'a')) - { - fwrite($fp, $log_entry); - fclose($fp); - } + !empty($smtp_response) ? join('; ', $smtp_response) : '')); } rcmail_compose_cleanup(); |