0
votes

I have a small service with creating and sending an email with "inline" attachment which contains .ics file with n-count events, how created using the ical4j library.

  • If I send it to Outlook/Gmail calendar it synchronizes correctly to all days.
  • If I send it to Lotus Notes calendar it synchronizes only first day.

Is it Lotus Notes calendar feature or am I making some mistakes?

GitHub repo

Thanks in advance

Google Drive link to .ics file

1
Could you include the content of the ICS file? The problem may be in the final formatting of the multiple dates. - teleman
@teleman Added, check - Seva Gaputin
What if you change the METHOD to PUBLISH instead of REQUEST ? - teleman
@teleman Nothing change, only first day synchronizes. Lotus remove all events without first. link to modified ics - Seva Gaputin
Yes, see stackoverflow.com/questions/2223882/… about the BOM, byte-order mark. See if you can have the ICS file generated in UTF-8 without the BOM (EE BB BF). - teleman

1 Answers

0
votes

Set the Mime header for Content-Type in iCal4J for the iCal file:

Content-Type: text/calendar; charset="utf-8"