Changeset db1f1e3 in github


Ignore:
Timestamp:
Jul 29, 2010 4:12:44 AM (3 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
ee09d46
Parents:
8fc8101
Message:
  • Include all recipients in sendmail log
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r3a4c9f4 rdb1f1e3  
    22=========================== 
    33 
     4- Include all recipients in sendmail log 
    45- Support HTTP_X_FORWARDED_PROTO header for HTTPS detecting (#1486866) 
    56- Fix default IMAP port configuration (#1486864) 
  • program/steps/mail/func.inc

    rb9ec2bd rdb1f1e3  
    14451445    unset($headers['Return-Receipt-To'], $headers['Disposition-Notification-To']); 
    14461446 
     1447    // get all recipients 
     1448    if ($headers['Cc']) 
     1449      $mailto .= $headers['Cc']; 
     1450    if ($headers['Bcc']) 
     1451      $mailto .= $headers['Bcc']; 
     1452    if (preg_match_all('/<([^@]+@[^>]+)>/', $mailto, $m)) 
     1453      $mailto = implode(', ', array_unique($m[1])); 
     1454 
    14471455    if ($CONFIG['smtp_log']) { 
    14481456      write_log('sendmail', sprintf("User %s [%s]; Message for %s; %s", 
Note: See TracChangeset for help on using the changeset viewer.