From 32dc0decf54b45f915bb4d80895c92e7a813cdd0 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Fri, 18 Jan 2019 16:19:08 +0100 Subject: [PATCH] * Mail: add default value settings for S/MIME passphrase expiration in site configurations --- api/src/Storage/Tracking.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/src/Storage/Tracking.php b/api/src/Storage/Tracking.php index f42a685023..f7091eda9b 100644 --- a/api/src/Storage/Tracking.php +++ b/api/src/Storage/Tracking.php @@ -800,6 +800,9 @@ abstract class Tracking $notification = new $class(); $notification->set_receivers(array($receiver)); $notification->set_message($body_cache['text'], 'plain'); + // add our own signature to distinguish between original message and reply + // part. (e.g.: in OL there's no reply quote) + $body_cache['html'] = "----- origianl message -----"."\r\n".$body_cache['html']; $notification->set_message($body_cache['html'], 'html'); $notification->set_sender($sender); $notification->set_subject($subject);