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:40:51 (GMT) |
commit | fc73732cc6c994fa20c6c3c6c501fcac0bcf6535 (patch) | |
tree | efc3ebce01bd34713d74a163705a916509ee2fef | |
parent | dc5e3cb968288c8c0e708231a406e8772317ad13 (diff) | |
download | roundcubemail-plugins-kolab-fc73732cc6c994fa20c6c3c6c501fcac0bcf6535.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 d0ee59c..e70a9bf 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( |