- Write username instead of id in sendmail log (#1485477)

release-0.6
alecpl 16 years ago
parent da402d66df
commit a22cb65adb

@ -1,6 +1,12 @@
CHANGELOG RoundCube Webmail
---------------------------
2008/10/07 (alec)
----------
- Write username instead of id in sendmail log (#1485477)
- Fix htmlspecialchars() use for PHP version < 5.2.3 (#1485475)
- Fix js keywords escaping in json_serialize() for IE/Opera (#1485472)
2008/10/03 (alec)
----------
- Add support for SJIS, GB2312, BIG5 in rc_detect_encoding()

@ -1154,7 +1154,7 @@ function rcmail_compose_cleanup()
*/
function rcmail_deliver_message(&$message, $from, $mailto)
{
global $CONFIG;
global $CONFIG, $RCMAIL;
$msg_body = $message->get();
$headers = $message->headers();
@ -1210,9 +1210,9 @@ function rcmail_deliver_message(&$message, $from, $mailto)
unset($headers['Return-Receipt-To'], $headers['Disposition-Notification-To']);
if ($CONFIG['smtp_log'])
write_log('sendmail', sprintf("[%s] User: %d on %s; Message for %s; %s",
write_log('sendmail', sprintf("[%s] User: %s on %s; Message for %s; %s",
date("d-M-Y H:i:s O", mktime()),
$_SESSION['user_id'],
$RCMAIL->user->get_username(),
$_SERVER['REMOTE_ADDR'],
$mailto,
!empty($smtp_response) ? join('; ', $smtp_response) : ''));

Loading…
Cancel
Save