diff options
| -rw-r--r-- | CHANGELOG | 1 | ||||
| -rw-r--r-- | program/steps/mail/func.inc | 1 | 
2 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,7 @@  CHANGELOG RoundCube Webmail  =========================== +- Add References header in read receipt (#1486681)  - Fix database constraint violation when opening a message (#1486696)  - Add 'loading' message while login is in progress (#1486667)  - Fix quota_zero_as_unlimited (#1486662) diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 25b0338af..bd7fa9c43 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -1436,6 +1436,7 @@ function rcmail_send_mdn($uid, &$smtp_error)        'Subject' => rcube_label('receiptread') . ': ' . $message->subject,        'Message-ID' => sprintf('<%s@%s>', md5(uniqid('rcmail'.mt_rand(),true)), $RCMAIL->config->mail_domain($_SESSION['imap_host'])),        'X-Sender' => $identity['email'], +      'References' => trim($message->headers->references . ' ' . $message->headers->messageID),      );      if ($agent = $RCMAIL->config->get('useragent'))  | 
