You are not logged in.
Pages: 1
In version 10.0.10 and previous they are simply an empty ticket.
Is there anything I can do?
Perfect would be if they would be attached as an attachment.
Offline
In case somebody is having the same issue. This is simply not possible and not a misconfiguration of your system!
The raw email content for an appointment created by Outlook looks like this:
...
</body>
</html>
--_000_0ad3d2015afe430da4dd4bce80e589c6adelphide_
Content-Type: text/calendar; charset="utf-8"; method=REQUEST
Content-Transfer-Encoding: base64
QkVHSU46VkNBTEVOREFSDQpNRVRIT0Q6UkVRVUVTVA0KUFJPRElEOk1pY3Jvc29mdCBFeGNoYW5n
ZSBTZXJ2ZXIgMjAxMA0KVkVSU0lPTjoyLjANCkJFR0lOOlZUSU
... and so on
however this will always gets filtered out by the mailcollector.php as there is not content-disposition (but is a file that cannot be rendered)
if (!$part->getHeaders()->has('content-disposition') && preg_match('/^text\/.+/', $content_type)) {
// Ignore attachements with no content-disposition only if they corresponds to a text part.
// Indeed, some mail clients (like some Outlook versions) does not set any content-disposition
// header on inlined images.
return false;
}
Offline
Pages: 1