Should OTOBO send out invititation with content-type application/ics ? #2233
Replies: 4 comments
|
On the other hand, Thunderbird sends out both content types. See also https://stackoverflow.com/questions/42023140/inviting-event-attendees-programatically-on-ios-10/42065816#42065816 for a concist explanation of all those standards. |
|
See also the question on Stackoverflow: https://stackoverflow.com/questions/75782030/should-icalendar-invitations-be-mailed-as-an-attachment-in-addtion-to-the-invita |
|
I googled again and I didn't get many new insights. https://www.informatik-aktuell.de/betrieb/sicherheit/kalender-spam-wenn-spam-bis-ins-wohnzimmer-gelangt.html also referred to https://devguide.calconnect.org/iMIP/iMIPBest-Practices/ . I found no new info that the application/ics part is no longer needed. So I leave things as they are. |
|
I'm getting annoyed with this topic. application/ics will be removed and only readded when somebody complains. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
There is some ongoing work the improves the Calendar support in OTOBO. One part is that OTOBO sends invitations to calendar events. These invitations are iCalendar, https://www.rfc-editor.org/rfc/rfc5545, files that are sent out via Email, https://www.rfc-editor.org/rfc/rfc6047.
Currently the iCalendar file is sent out twice in a single message. First with content type text/calendar and then also as application/ics. This is in line with the best practices presented in https://devguide.calconnect.org/iMIP/iMIPBest-Practices. application/ics is apparently used by Google Calendar. But application/ics is not registered with the IANA, https://www.iana.org/assignments/media-types/media-types.xhtml.
I checked the invitations sent out by SOGo. These contain the iCalendar file only as text/calendar. Thus I propose to ditch application/ics in the invitations sent out by OTOBO.
The parser for incoming invitations and replies currently accepts:
All reactions