diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-06-27 21:40:11 (GMT) |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-06-27 21:41:09 (GMT) |
commit | ce24ff2d6ddb518ef65e15c82ca48cf72725039b (patch) | |
tree | daca0b3f0afb169e40707f37f76fa1373e4df9da | |
parent | 8229ab3b3e05e0e9f70b8d73caad40ca99188a81 (diff) | |
download | roundcubemail-plugins-kolab-ce24ff2d6ddb518ef65e15c82ca48cf72725039b.tar.gz |
Send iTip messages als multipart/alternative to make Outlook recognize them correctly (#1103)
-rw-r--r-- | plugins/calendar/lib/calendar_itip.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/calendar/lib/calendar_itip.php b/plugins/calendar/lib/calendar_itip.php index 6ff5b6b..cb19646 100644 --- a/plugins/calendar/lib/calendar_itip.php +++ b/plugins/calendar/lib/calendar_itip.php @@ -143,6 +143,7 @@ class calendar_itip $message->setParam('head_encoding', 'quoted-printable'); $message->setParam('head_charset', RCMAIL_CHARSET); $message->setParam('text_charset', RCMAIL_CHARSET . ";\r\n format=flowed"); + $message->setContentType('multipart/alternative'); // compose common headers array $headers = array( |