<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Activity for Outlook CalDav Synchronizer</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/activity/</link><description>Recent activity for Outlook CalDav Synchronizer</description><language>en</language><lastBuildDate>Thu, 23 Apr 2026 09:35:30 -0000</lastBuildDate><item><title>R. Lehmann posted a comment on ticket #2158</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2158/?limit=25#7bff</link><description>additional</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">R. Lehmann</dc:creator><pubDate>Thu, 23 Apr 2026 09:35:30 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2158/?limit=25#7bff</guid></item><item><title>R. Lehmann created ticket #2158</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2158/</link><description>Always Google Contacts Errors</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">R. Lehmann</dc:creator><pubDate>Thu, 23 Apr 2026 09:34:45 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2158/</guid></item><item><title>Eric Pantekoek created ticket #2157</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2157/</link><description>Sync-problems: The request was aborted: Could not create SSL/TLS secure channel.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric Pantekoek</dc:creator><pubDate>Sat, 18 Apr 2026 11:29:21 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2157/</guid></item><item><title>Alexander Nimmervoll modified ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/</link><description>CardDAV sync with WEB.DE fails with HTTP 308 Permanent Redirect in v4.6.0</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexander Nimmervoll</dc:creator><pubDate>Fri, 03 Apr 2026 17:04:49 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/</guid></item><item><title>Alexander Nimmervoll posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#9bc5</link><description>thx for debbugging efforts!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexander Nimmervoll</dc:creator><pubDate>Fri, 03 Apr 2026 17:04:49 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#9bc5</guid></item><item><title>Boris Bernhardt posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#a16c</link><description>Thanks too, Jochen, for being so supportive with all my questions and for pushing this across the finish line.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Boris Bernhardt</dc:creator><pubDate>Fri, 03 Apr 2026 16:55:19 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#a16c</guid></item><item><title>JoGa posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#ea4b</link><description>Issue resolved. Ticket may be closed. @caldavsync @nimm @nertsch</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Fri, 03 Apr 2026 16:54:08 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#ea4b</guid></item><item><title>JoGa posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#3cf9/42fe</link><description>Thanks for confirming, Boris. Glad that it works now also on your end. Was very helpful to work on this together here, so I could convince web.de support that it is not an individual issue but they need to fix it on their end.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Fri, 03 Apr 2026 16:38:23 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#3cf9/42fe</guid></item><item><title>Boris Bernhardt posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#3cf9</link><description>Sorry I was on a business trip and had no access...... I did refresh my carddav profile and can confirm success. Now everything works again perfect (as it did before the 23rd last month).</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Boris Bernhardt</dc:creator><pubDate>Fri, 03 Apr 2026 16:12:22 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#3cf9</guid></item><item><title>ultradj83 created ticket #2156</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2156/</link><description>/**  * Monitoraggio duplicati Google Calendar.  * Eseguire manualmente o impostare un trigger temporizzato.  *  * PREREQUISITO: Servizi → + → Google Calendar API  *  * - verifyDuplicates: controlla e logga i duplicati  * - setupDailyCheck: imposta controllo automatico giornaliero  * - removeTrigger: rimuove il controllo automatico  */  const CALENDAR_ID = 'primary'; const EMAIL_ALERT = 'federico.rampin@gmail.com';  function verifyDuplicates() {   const timeMin = new Date();   timeMin.setFullYear(timeMin.getFullYear() - 2);   const timeMax = new Date();   timeMax.setFullYear(timeMax.getFullYear() + 2);    let allEvents = [];   let pageToken = null;    do {     const params = {       timeMin: timeMin.toISOString(),       timeMax: timeMax.toISOString(),       maxResults: 2500,       singleEvents: true,       showDeleted: false     };     if (pageToken) params.pageToken = pageToken;      const response = Calendar.Events.list(CALENDAR_ID, params);     allEvents = allEvents.concat(response.items);     pageToken = response.nextPageToken;   } while (pageToken);    const seen = {};   const duplicates = [];    for (const event of allEvents) {     const start = event.start.dateTime || event.start.date;     const end = event.end.dateTime || event.end.date;     const key = [event.summary || '', start, end].join('|');      if (seen[key]) {       duplicates.push(event);     } else {       seen[key] = true;     }   }    Logger.log('Totale eventi: ' + allEvents.length + ' / Duplicati: ' + duplicates.length);    if (duplicates.length &gt; 0) {     Logger.log('ATTENZIONE: ' + duplicates.length + ' duplicati trovati!');     duplicates.slice(0, 10).forEach(e =&gt; {       const detail = Calendar.Events.get(CALENDAR_ID, e.id);       Logger.log('  - "' + (e.summary || '') + '" il ' + (e.start.dateTime || e.start.date));       Logger.log('    id: ' + e.id);       Logger.log('    created: ' + detail.created);       Logger.log('    updated: ' + detail.updated);       Logger.log('    creator: ' + (detail.creator ? detail.creator.email : 'N/A'));       Logger.log('    organizer: ' + (detail.organizer ? detail.organizer.email : 'N/A'));       Logger.log('    recurringEventId: ' + (detail.recurringEventId || 'N/A'));     });      const fingerprint = duplicates.map(e =&gt; e.id).sort().join(',');     const props = PropertiesService.getScriptProperties();     const lastFingerprint = props.getProperty('lastDuplicateFingerprint');      if (fingerprint !== lastFingerprint) {       props.setProperty('lastDuplicateFingerprint', fingerprint);       MailApp.sendEmail(EMAIL_ALERT,         'Google Calendar: ' + duplicates.length + ' duplicati trovati!',         'Trovati ' + duplicates.length + ' eventi duplicati nel calendario.\n\n' +         'Primi 10:\n' + duplicates.slice(0, 10).map(e =&gt;           '- "' + (e.summary || '') + '" il ' + (e.start.dateTime || e.start.date)         ).join('\n')       );       Logger.log('Email inviata (nuovi duplicati)');     } else {       Logger.log('Stessi duplicati di prima, email non inviata');     }   } else {     PropertiesService.getScriptProperties().deleteProperty('lastDuplicateFingerprint');   }    return duplicates.length; }  function removeDuplicatesV2() {   const dupes = findDuplicates_();   Logger.log('Eliminazione di ' + dupes.length + ' duplicati...');   let deleted = 0;   let errors = 0;    for (const event of dupes) {     try {       Calendar.Events.remove(CALENDAR_ID, event.id, { sendUpdates: 'none' });       deleted++;       Utilities.sleep(800);     } catch (e) {       if (e.message.indexOf('Not Found') !== -1 || e.message.indexOf('deleted') !== -1) {         deleted++;       } else if (e.message.indexOf('Rate Limit') !== -1) {         Logger.log('Rate limit, pausa 30s...');         Utilities.sleep(30000);         try {           Calendar.Events.remove(CALENDAR_ID, event.id, { sendUpdates: 'none' });           deleted++;         } catch (e2) {           errors++;         }       } else {         errors++;         Logger.log('Errore: "' + (event.summary || '') + '": ' + e.message);       }     }   }   Logger.log('Eliminati: ' + deleted + ' / Errori: ' + errors); }  function findDuplicates_() {   const timeMin = new Date();   timeMin.setFullYear(timeMin.getFullYear() - 2);   const timeMax = new Date();   timeMax.setFullYear(timeMax.getFullYear() + 2);    let allEvents = [];   let pageToken = null;    do {     const params = {       timeMin: timeMin.toISOString(),       timeMax: timeMax.toISOString(),       maxResults: 2500,       singleEvents: true,       showDeleted: false     };     if (pageToken) params.pageToken = pageToken;      const response = Calendar.Events.list(CALENDAR_ID, params);     allEvents = allEvents.concat(response.items);     pageToken = response.nextPageToken;   } while (pageToken);    const seen = {};   const duplicates = [];    for (const event of allEvents) {     const start = event.start.dateTime || event.start.date;     const end = event.end.dateTime || event.end.date;     const key = [event.summary || '', start, end].join('|');      if (seen[key]) {       duplicates.push(event);     } else {       seen[key] = true;     }   }    return duplicates; }  function setupDailyCheck() {   removeTrigger();   ScriptApp.newTrigger('verifyDuplicates')     .timeBased()     .everyMinutes(10)     .create();   Logger.log('Controllo ogni 10 minuti impostato'); }  function removeTrigger() {   ScriptApp.getProjectTriggers().forEach(t =&gt; {     if (t.getHandlerFunction() === 'verifyDuplicates') {       ScriptApp.deleteTrigger(t);     }   });   Logger.log('Trigger rimosso'); }</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ultradj83</dc:creator><pubDate>Fri, 03 Apr 2026 12:20:09 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2156/</guid></item><item><title>JoGa posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#6e61/de2d/042a/f480/c61d</link><description>The trailing slash issue you identified helped a lot with that for sure. :-D</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Mon, 30 Mar 2026 17:32:00 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#6e61/de2d/042a/f480/c61d</guid></item><item><title>Grubsi posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#6e61/de2d/042a/f480</link><description>But you convinced the support that there might be something going on on their side 😊</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Grubsi</dc:creator><pubDate>Mon, 30 Mar 2026 17:29:36 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#6e61/de2d/042a/f480</guid></item><item><title>JoGa posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#6e61/de2d/042a</link><description>I'd say that was some great effort we did together. Thanks, too!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Mon, 30 Mar 2026 17:27:30 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#6e61/de2d/042a</guid></item><item><title>Grubsi posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#6e61/de2d</link><description>Yes it's working for me! Thanks!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Grubsi</dc:creator><pubDate>Mon, 30 Mar 2026 17:26:14 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#6e61/de2d</guid></item><item><title>JoGa posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#6e61</link><description>Update: the issue appears to be resolved now. WEB.DE support informed me today that contact synchronization via CardDAV should work again and that reconfiguration might be necessary. I then restored my original CalDav Synchronizer configuration, i.e. I reverted all workaround changes that I had made during testing, including restoring the trailing slash at the end of the CardDAV URL. After that, contact sync worked again without errors. My latest synchronization report completed successfully, and...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Mon, 30 Mar 2026 14:46:52 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#6e61</guid></item><item><title>Grubsi posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#dd09/4c55/311b</link><description>I guess they have updated or changed something and now the web server returns 308 on the URL with the slash at the end. Most clients won't have a problem as they follow the redirect.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Grubsi</dc:creator><pubDate>Sat, 28 Mar 2026 18:38:46 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#dd09/4c55/311b</guid></item><item><title>JoGa posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#912c/82b4</link><description>Yes, that sounds exactly right. The root URL https://carddav.gmx.net/ is only the starting point. After discovery, the client normally resolves the actual account-specific full collection URL. If discovery is now broken, the easiest way to recover that full collection URL may be to read it from another client that still works, for example: DAVx5 on Android Thunderbird, if CardDAV is still configured there any other CardDAV client that is currently still connected In my WEB.DE case, DAVx5 still worked...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Sat, 28 Mar 2026 18:12:15 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#912c/82b4</guid></item><item><title>Boris Bernhardt posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#912c</link><description>The procedure for the initial GMX carddav set up is to use the root url https://carddav.gmx.net/ and to hit the button "Test connection". The app then redirects itself to the correct link within GMX or provides a list with possible addressbooks ( in case you run more than just one addressbook). After successfully connected you will get in return a full collection URL. But as the app does not connect anymore, and after I deleted and reinstalled CalDav Synchronizer as I thought the error is on my side,...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Boris Bernhardt</dc:creator><pubDate>Sat, 28 Mar 2026 15:12:45 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#912c</guid></item><item><title>JoGa posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#dd09/4c55</link><description>Thank you, Grubsi, that is very helpful. This matches exactly what I observed on WEB.DE: with the trailing slash, CardDAV fails early with HTTP 308 Permanent Redirect without the trailing slash, reading starts to work, but creating new contacts fails with HTTP 404 So your explanation about the URL construction for Create makes a lot of sense to me. For additional context: I contacted WEB.DE support twice. Their initial feedback was essentially: they do not currently see a general CardDAV outage they...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Sat, 28 Mar 2026 12:43:54 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#dd09/4c55</guid></item><item><title>JoGa modified a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#28f8/a18f</link><description>1) What I meant was not removing the slash from a generic root URL like &lt;calenderurl&gt;https://carddav.gmx.net/&lt;/calenderurl&gt; In my case the workaround only changed the behavior when I removed the trailing slash from the full collection URL, not from the generic root URL. Example: with slash at the very end after "Contact": https://carddav.web.de/CardDavProxy/carddav/AddressBook/.../Contact/ without slash at the very end of the fill collection URL: https://carddav.web.de/CardDavProxy/carddav/AddressBook/.../Contact...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Sat, 28 Mar 2026 12:35:47 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#28f8/a18f</guid></item><item><title>JoGa modified a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#28f8/a18f</link><description>1) What I meant was not removing the slash from a generic root URL like &lt;calenderurl&gt;https://carddav.gmx.net/&lt;/calenderurl&gt; In my case the workaround only changed the behavior when I removed the trailing slash from the full collection URL, not from the generic root URL. Example: with slash at the very end after "Contact": https://carddav.web.de/CardDavProxy/carddav/AddressBook/.../Contact/ without slash at the very end of the fill collection URL: https://carddav.web.de/CardDavProxy/carddav/AddressBook/.../Contact...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Sat, 28 Mar 2026 12:35:25 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#28f8/a18f</guid></item><item><title>JoGa posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#28f8/a18f</link><description>1) What I meant was not removing the slash from a generic root URL like &lt;calenderurl&gt;https://carddav.gmx.net/&lt;/calenderurl&gt; In my case the workaround only changed the behavior when I removed the trailing slash from the full collection URL, not from the generic root URL. Example: with slash at the very end after "Contact": https://carddav.web.de/CardDavProxy/carddav/AddressBook/.../Contact/ without slash at the very end of the fill collection URL: https://carddav.web.de/CardDavProxy/carddav/AddressBook/.../Contact...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Sat, 28 Mar 2026 12:23:16 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#28f8/a18f</guid></item><item><title>Boris Bernhardt posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#28f8</link><description>Sorry, but I can't follow.... would you mind describing the excact details of "removing the final slash in the calender Url tag" When I edit the options.xml the line shows: &lt;calenderurl&gt;https://carddav.gmx.net/&lt;/calenderurl&gt; Do I need to remove the / behind the .net?, save the file, reopen outlook and start the sync? That's at least what I did, but it didn't work. Note on the last entry before my message: "So we will have to wait for a new version or a fix at MX and/or Web.de. --&gt; The synchronisation...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Boris Bernhardt</dc:creator><pubDate>Sat, 28 Mar 2026 11:29:38 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#28f8</guid></item><item><title>Grubsi posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#dd09</link><description>I have not tested creating new or updating entries before. I looked into creating and updating now. Updating seems to work. Creating fails with 404, because of how the URL is generated here: https://sourceforge.net/p/outlookcaldavsynchronizer/code/ci/master/tree/CalDavSynchronizer/DataAccess/CardDavDataAccess.cs#l245 The .Net new Uri replaces the Contact part at the end with the name of the VCard. So we will have to wait for a new version or a fix at GMX and WEB.DE.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Grubsi</dc:creator><pubDate>Sat, 28 Mar 2026 06:24:31 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#dd09</guid></item><item><title>JoGa modified a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#bc14/8cab</link><description>Thank you, Grubsi! . I tried it with the following result: removing the trailing slash in CalenderUrl changes the behavior the previous 308 Permanent Redirect disappears synchronization starts and contact retrieval works but then CreateNewEntity fails with 404 Not Found therefore the issue seems split into: ** with trailing slash: read/list fails with 308 ** without trailing slash: read works, create fails with 404 . I tried to pursue the 404, but my attempts rather lead to duplicate contacts etc....</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Fri, 27 Mar 2026 18:54:00 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#bc14/8cab</guid></item><item><title>JoGa modified a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#bc14/8cab</link><description>Thank you, Grubsi! I tried it with the following result: removing the trailing slash in CalenderUrl changes the behavior the previous 308 Permanent Redirect disappears synchronization starts and contact retrieval works but then CreateNewEntity fails with 404 Not Found therefore the issue seems split into: ** with trailing slash: read/list fails with 308 ** without trailing slash: read works, create fails with 404 I tried to pursue the 404, but my attempts rather lead to duplicate contacts etc. Did...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Fri, 27 Mar 2026 18:28:01 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#bc14/8cab</guid></item><item><title>JoGa posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#bc14/8cab</link><description>Thank you, Grubsi! I tried it with the following result: removing the trailing slash in CalenderUrl changes the behavior the previous 308 Permanent Redirect disappears synchronization starts and contact retrieval works but then CreateNewEntity fails with 404 Not Found therefore the issue seems split into: ** with trailing slash: read/list fails with 308 ** without trailing slash: read works, create fails with 404 I am now following up on the new 404.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Fri, 27 Mar 2026 18:21:12 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#bc14/8cab</guid></item><item><title>Grubsi modified a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#bc14</link><description>The problem is a redirect to URLs without a slash at the end. As a workaround for my GMX sync I did the following: Open the CalDav folder in your AppData: %appdata%..\Local\CalDavSynchronizer\ In the profiles.xml you find the GUID of the correct profile. Open the folder with that GUID. There open the options.xml and remove the final slash in the CalenderUrl tag.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Grubsi</dc:creator><pubDate>Fri, 27 Mar 2026 17:24:10 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#bc14</guid></item><item><title>Grubsi posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#bc14</link><description>The problem is a redirect to URLs without a slash at the end. As a workaround I did the following: Open the CalDav folder in your AppData: %appdata%..\Local\CalDavSynchronizer\ In the profiles.xml you find the GUID of the correct profile. Open the folder with that GUID. There open the options.xml and remove the final slash in the CalenderUrl tag.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Grubsi</dc:creator><pubDate>Fri, 27 Mar 2026 17:18:55 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#bc14</guid></item><item><title>JoGa posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#4e20/ad39</link><description>That makes it much more likely that this is a common CardDAV redirect/discovery issue and not just a single broken profile. Please consider giving this ticket an upvote so the maintainers notice it faster (+ button at the header of this ticket).</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Fri, 27 Mar 2026 10:10:44 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#4e20/ad39</guid></item><item><title>JoGa posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#d3a6/1313</link><description>Good to know GMX (United Internet like WEB.DE) is affected as well and that it started only recently. In my case since 23rd Mach 2026. This really looks like a broader issue and not like an isolated local setup problem. If you agree, please give this ticket an upvote (+ button on top of this ticket) so it gets more visibility.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Fri, 27 Mar 2026 10:09:39 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#d3a6/1313</guid></item><item><title>JoGa modified a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#e7ce</link><description>Thank you both for confirming. This now looks increasingly like a broader GMX/WEB.DE (i.e. United Internet) CardDAV issue rather than a local profile or data problem. To summarize my case again: WEB.DE affected CardDAV contacts fail with HTTP 308 Permanent Redirect CalDAV calendar still works DAVx⁵ on Android works with the same account and URL a newly created CardDAV profile did not help a new dedicated app-specific password did not help either Since at least two more users now report the same behavior,...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Fri, 27 Mar 2026 10:07:48 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#e7ce</guid></item><item><title>JoGa modified a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#e7ce</link><description>Thank you both for confirming. This now looks increasingly like a broader GMX/WEB.DE (i.e. United Internet) CardDAV issue rather than a local profile or data problem. To summarize my case again: WEB.DE affected CardDAV contacts fail with HTTP 308 Permanent Redirect CalDAV calendar still works DAVx⁵ on Android works with the same account and URL a newly created CardDAV profile did not help a new dedicated app-specific password did not help either Since at least two more users now report the same behavior,...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Fri, 27 Mar 2026 10:07:24 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#e7ce</guid></item><item><title>JoGa posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#e7ce</link><description>Thank you both for confirming. This now looks increasingly like a broader GMX/WEB.DE (i.e. United Internet) CardDAV issue rather than a local profile or data problem. To summarize my case again: WEB.DE affected CardDAV contacts fail with HTTP 308 Permanent Redirect CalDAV calendar still works DAVx⁵ on Android works with the same account and URL a newly created CardDAV profile did not help a new dedicated app-specific password did not help either Since at least two more users now report the same behavior,...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Fri, 27 Mar 2026 10:04:29 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#e7ce</guid></item><item><title>Boris Bernhardt posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#4e20</link><description>Having exactly the same issue as described. I was trying all kind of "solutions" and workarounds to get it fixed, but failed in all attemps. Anyway, this seems to be a common problem these days....</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Boris Bernhardt</dc:creator><pubDate>Fri, 27 Mar 2026 07:00:32 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#4e20</guid></item><item><title>Jean-Francois Fortier posted a comment on ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#d3a6</link><description>I have the same problem with GMX CardDAV sync, I didn't start a full trouble shooting, but it started out of the blues last week, Error 308.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jean-Francois Fortier</dc:creator><pubDate>Fri, 27 Mar 2026 02:04:14 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/?limit=25#d3a6</guid></item><item><title>JoGa created ticket #2155</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/</link><description>CardDAV sync with WEB.DE fails with HTTP 308 Permanent Redirect in v4.6.0</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">JoGa</dc:creator><pubDate>Thu, 26 Mar 2026 10:54:41 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2155/</guid></item><item><title>Сергей Мартыненко created ticket #2154</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2154/</link><description>4.6.0.0 Error 500 </description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Сергей Мартыненко</dc:creator><pubDate>Thu, 26 Mar 2026 08:35:25 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2154/</guid></item><item><title>Adam Brass modified a comment on ticket #2141</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2141/?limit=25#9e1d</link><description>I am having the same issue. I have 2 PC's with CalDavSynchronizer on them. Each are configured to sync the same Google calendar to the local Outlook calendar (2 way sync). It's a shared calendar with my wife. She just complained to me that something is wrong with google calendar. She added an event, and then duplicate events started showing up. Eventually there were like 6 or 7 duplicates. The behavior stopped once I closed Outlook on one of the PC's. I don't really need both open at the same time,...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Adam Brass</dc:creator><pubDate>Mon, 09 Mar 2026 19:50:00 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2141/?limit=25#9e1d</guid></item><item><title>Adam Brass modified a comment on ticket #2141</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2141/?limit=25#9e1d</link><description>I am having the same issue. I have 2 PC's with CalDavSynchronizer on them. Each are configured to sync the same Google calendar to the local Outlook calendar (2 way sync). It's a shared calendar with my wife. She just complained to me that something is wrong with google calendar. She added an event, and then duplicate events started showing up. Eventually there were like 6 or 7 duplicates. The behavior stopped once I closed Outlook on one of the PC's. I don't really need both open at the same time,...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Adam Brass</dc:creator><pubDate>Mon, 09 Mar 2026 19:49:38 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2141/?limit=25#9e1d</guid></item><item><title>Adam Brass posted a comment on ticket #2141</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2141/?limit=25#9e1d</link><description>I am having the same issue. I have 2 PC's with CalDavSynchronizer on them. Each are configured to sync the same Google calendar to the local Outlook calendar. My wife just complained to me that something is wrong with google calendar. She added an event, and then duplicate events started showing up. Eventually there were like 6 or 7 duplicates. The behavior stopped once I closed one of the Outlooks.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Adam Brass</dc:creator><pubDate>Mon, 09 Mar 2026 19:48:06 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2141/?limit=25#9e1d</guid></item><item><title>Heidi Sponholz created ticket #2153</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2153/</link><description>Sync does no ore working with GMX</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Heidi Sponholz</dc:creator><pubDate>Sat, 07 Mar 2026 09:01:52 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2153/</guid></item><item><title>msku posted a comment on ticket #2152</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2152/?limit=25#30e2</link><description>Same problem to me! Win11 25H2 + Outlook 2016</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">msku</dc:creator><pubDate>Thu, 05 Mar 2026 07:36:22 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2152/?limit=25#30e2</guid></item><item><title>DirtyTobi created ticket #2152</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2152/</link><description>CalDav Synchronizer 4.6 not working with GMX.de</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">DirtyTobi</dc:creator><pubDate>Wed, 04 Mar 2026 22:10:37 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2152/</guid></item><item><title>Heidi Sponholz posted a comment on ticket #2151</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2151/?limit=25#2c54</link><description>I have the exact same problem</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Heidi Sponholz</dc:creator><pubDate>Wed, 04 Mar 2026 15:27:56 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2151/?limit=25#2c54</guid></item><item><title>Monika Rolley created ticket #2151</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2151/</link><description>CalDavSynchronizer stopped to sync</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Monika Rolley</dc:creator><pubDate>Tue, 03 Mar 2026 09:24:15 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2151/</guid></item><item><title>KingWah WONG created ticket #2149</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2149/</link><description>synchronization error </description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">KingWah WONG</dc:creator><pubDate>Fri, 27 Feb 2026 16:04:42 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2149/</guid></item><item><title>Jon Stewart posted a comment on ticket #2148</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2148/?limit=25#afed</link><description>This problem has gone away. Suspecting a problem calendar entry, I changed the advanced settings to synchronise from 5 days in the past to five days in the future. After that, I could synchronise without error. Then I changed back to the default 60 days in the past and 365 days in the future - and the problem did not return. I have been using CalDav for a couple of years and this is the only problem I've encountered, so if it is a one off perhaps this issue can be closed if there is not something...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jon Stewart</dc:creator><pubDate>Tue, 17 Feb 2026 15:23:24 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2148/?limit=25#afed</guid></item><item><title>Jon Stewart posted a comment on ticket #2148</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2148/?limit=25#63df</link><description>Additional information: Windows version: Windows 11 Pro, 25H2 Outlook version: Version 2508 (version 19127.20302) CalDav version: 4.6.0.0</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jon Stewart</dc:creator><pubDate>Mon, 16 Feb 2026 11:10:56 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2148/?limit=25#63df</guid></item><item><title>Jon Stewart created ticket #2148</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2148/</link><description>Jon</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jon Stewart</dc:creator><pubDate>Mon, 16 Feb 2026 11:04:17 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2148/</guid></item><item><title>Robert Welsh created ticket #2146</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2146/</link><description>CalDAV Outlook Addin unable to synchronize outlook events when invalid email addresses are included in distribution</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Robert Welsh</dc:creator><pubDate>Thu, 12 Feb 2026 21:18:17 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2146/</guid></item><item><title>Werner Hoppmann created ticket #2145</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2145/</link><description>Smart App Control wird aktiv</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Werner Hoppmann</dc:creator><pubDate>Mon, 09 Feb 2026 09:01:18 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2145/</guid></item><item><title>Werner Hoppmann created ticket #2144</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2144/</link><description>Smart App Control</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Werner Hoppmann</dc:creator><pubDate>Sun, 08 Feb 2026 11:06:14 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2144/</guid></item><item><title>Matt Emery created ticket #2143</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2143/</link><description>Sync Issues</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Matt Emery</dc:creator><pubDate>Sun, 08 Feb 2026 09:26:45 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2143/</guid></item><item><title>Christoph Booz created ticket #2142</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2142/</link><description>CalDav Synchronizer / Synchronisation</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Christoph Booz</dc:creator><pubDate>Fri, 06 Feb 2026 16:35:47 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2142/</guid></item><item><title>Dirk Bourgeois created ticket #2141</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2141/</link><description>Duplicate Entries with 2 Systems</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dirk Bourgeois</dc:creator><pubDate>Tue, 03 Feb 2026 15:58:34 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2141/</guid></item><item><title>Claudio Treschau created ticket #2140</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2140/</link><description>Errorer Report nach jeder Synchonisation - Failed to delete the object ***</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Claudio Treschau</dc:creator><pubDate>Tue, 03 Feb 2026 08:02:07 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2140/</guid></item><item><title>Ian Bartlett posted a comment on ticket #2132</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2132/?limit=25#9e72</link><description>I am experiencing very similar for this attempted configuration: * Windows Pro 10 (build 19046.6466) * Outlook for Microsoft 365 (version 2601 build 16.0.19628.20132) 64-bit * CalDav Synchronizer version 4.6.0.0 (confirmed latest) * CalDav server: https://mail.worldooh.org:2080 In another context, I have been told that Outlook 365 changed certain methods of synchronisation in 2024. This rendered another email account unsuitable for sending. I am not technical.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ian Bartlett</dc:creator><pubDate>Mon, 02 Feb 2026 14:37:41 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2132/?limit=25#9e72</guid></item><item><title>Frank Jumppanen Andersen posted a comment on ticket #2139</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2139/?limit=25#e1d9</link><description>second exmple: False System.IndexOutOfRangeException: Index was outside the bounds of the array. at DDay.iCal.Serialization.iCalendar.RecurrencePatternSerializer.Deserialize(TextReader tr) at DDay.iCal.Serialization.iCalendar.DataMapSerializer.Deserialize(TextReader tr) at DDay.iCal.iCalParser.property(ISerializationContext ctx, ICalendarPropertyListContainer c) at DDay.iCal.iCalParser.component(ISerializationContext ctx, ISerializerFactory sf, ICalendarComponentFactory cf, ICalendarObject o) at...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Frank Jumppanen Andersen</dc:creator><pubDate>Sun, 01 Feb 2026 10:46:38 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2139/?limit=25#e1d9</guid></item><item><title>Frank Jumppanen Andersen created ticket #2139</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2139/</link><description>System.IndexOutOfRangeException: Index was outside the bounds of the array.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Frank Jumppanen Andersen</dc:creator><pubDate>Sun, 01 Feb 2026 10:39:39 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2139/</guid></item><item><title>Wolfgang Agler created ticket #2138</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2138/</link><description>Problems ...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Wolfgang Agler</dc:creator><pubDate>Fri, 23 Jan 2026 17:28:49 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2138/</guid></item><item><title>Wolf Buehl created ticket #2137</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2137/</link><description>Caldav is swapping appointments between people</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Wolf Buehl</dc:creator><pubDate>Fri, 23 Jan 2026 08:42:01 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2137/</guid></item><item><title>Santiago Quer posted a comment on ticket #2132</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2132/?limit=25#b727</link><description>Hello, It´s been a while since I opened this ticket. Any news?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Santiago Quer</dc:creator><pubDate>Mon, 19 Jan 2026 16:25:21 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2132/?limit=25#b727</guid></item><item><title>Flipland modified a comment on discussion General Discussion</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/discussion/general/thread/8ea2ce92ad/?limit=25#7d1c</link><description>I installed CalDaV Synchronizer v4.6.0 to sync "Generic CalDav/CardDav" calendar into Outlook. The sync feature works, but CalDav keeps issuing Synchronization Reports eact time sync is run. Is this normal? If not, then how can I set CalDav to only send the Syncnronization Reports when there IS a issue. A screenshot to the Synchronization Report is in the attached screenshot. Other details: Window OS Version 10.0.26200 Build 26200 Microsoft® Outlook® for Microsoft 365 MSO (Version 2512 Build 16.0.19530.20138)...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Flipland</dc:creator><pubDate>Fri, 16 Jan 2026 00:23:38 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/discussion/general/thread/8ea2ce92ad/?limit=25#7d1c</guid></item><item><title>Flipland posted a comment on discussion General Discussion</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/discussion/general/thread/8ea2ce92ad/?limit=25#7d1c</link><description>I installed CalDaV Synchronizer v4.6.0 to sync "Generic CalDav/CardDav" calendar into Outlook. The sync feature works, but CalDav keeps issuing Synchronization Reports eact time sync is run. Is this normal? If not, then how can I set CalDav to only send the Syncnronization Reports when there IS a issue. A screenshot to the Synchronization Report is in the attached screenshot. Looking forward to hearing from this group for guidance. Thank you!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Flipland</dc:creator><pubDate>Fri, 16 Jan 2026 00:23:00 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/discussion/general/thread/8ea2ce92ad/?limit=25#7d1c</guid></item><item><title>Jan Grziwotz posted a comment on ticket #2135</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2135/?limit=25#1d44</link><description>Hello Support Team, Deleted contacts reappear after synchronization. We have several mailing lists – when we delete a contact from one of them, that deleted contact reappears in the list after CalDAV synchronization. Is there a solution for this problem? System: Windows 11 updated Office: Microsoft Office LTSC Professional Plus 2024 updated CalDAV synchronization updated. Sincerely, Jan Grziwotz</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jan Grziwotz</dc:creator><pubDate>Thu, 15 Jan 2026 11:58:47 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2135/?limit=25#1d44</guid></item><item><title>Jan Grziwotz created ticket #2135</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2135/</link><description>Deleted contacts reappear after synchronization.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jan Grziwotz</dc:creator><pubDate>Thu, 15 Jan 2026 11:58:05 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2135/</guid></item><item><title>Helge Deller posted a comment on ticket #1960</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/1960/?limit=25#3208</link><description>I'm having the same issue that Zoom invitations gets deleted when the Caldav Syncronizer starts to sync. Here is what happens: Zoom meetings, which are created in Outlook with the Zoom plugin, appear in the Outlook calendar. The invitation email is sent. Everything is OK. Then as soon as CalDav Syncronizer starts syncronization the entry gets deleted (and the external participant gets an email with cancellation of the meeting) (It did worked flawless with an older Outlook client on Windows10.) Outlook...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Helge Deller</dc:creator><pubDate>Thu, 08 Jan 2026 14:18:19 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/1960/?limit=25#3208</guid></item><item><title>Stephanus created ticket #2134</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2134/</link><description>error message: "'413' ('Request Entity Too Large')</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Stephanus</dc:creator><pubDate>Fri, 19 Dec 2025 07:05:32 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2134/</guid></item><item><title>Outlook CalDav Synchronizer updated /README.md</title><link>https://sourceforge.net/projects/outlookcaldavsynchronizer/files/README.md/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Outlook CalDav Synchronizer</dc:creator><pubDate>Sun, 30 Nov 2025 11:06:03 -0000</pubDate><guid>https://sourceforge.net/projects/outlookcaldavsynchronizer/files/README.md/download</guid></item><item><title>Outlook CalDav Synchronizer updated /README.md</title><link>https://sourceforge.net/projects/outlookcaldavsynchronizer/files/README.md/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Outlook CalDav Synchronizer</dc:creator><pubDate>Sun, 30 Nov 2025 11:05:04 -0000</pubDate><guid>https://sourceforge.net/projects/outlookcaldavsynchronizer/files/README.md/download</guid></item><item><title>Alexander Nimmervoll committed [554ecb] on Code</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/code/ci/554ecb9f56ea677613690c20ba44894c694e50b6/</link><description>Update README.md, add Recall.ai blurb.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexander Nimmervoll</dc:creator><pubDate>Sun, 30 Nov 2025 10:33:59 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/code/ci/554ecb9f56ea677613690c20ba44894c694e50b6/</guid></item><item><title>GitHub committed [c2c8a3] on Code</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/code/ci/c2c8a3470715db5c98dab4bc4f0f8684de093edb/</link><description>Create FUNDING.yml</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">GitHub</dc:creator><pubDate>Sun, 30 Nov 2025 10:27:38 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/code/ci/c2c8a3470715db5c98dab4bc4f0f8684de093edb/</guid></item><item><title>André Knies created ticket #2133</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2133/</link><description>CalDavSynchronizer.DataAccess.WebDavClientException</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">André Knies</dc:creator><pubDate>Wed, 19 Nov 2025 08:58:24 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2133/</guid></item><item><title>David modified a comment on ticket #2131</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2131/?limit=25#499c</link><description>I have the same error &amp; the synch fails on synching contacts with google. Synching with calendar is not an issue. If I manually synch after this error, the synch works. The error then returns on the next automatic synch , again a manual synch works. This is a new issue. I have just changed computers and upgraded to Windows 11 &amp; Outlook classic (microsoft 365) OS Name Microsoft Windows 11 Pro Version 10.0.26200 Build 26200 Microsoft® Outlook® for Microsoft 365 MSO (Version 2510 Build 16.0.19328.20190)...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David</dc:creator><pubDate>Sun, 16 Nov 2025 03:01:11 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2131/?limit=25#499c</guid></item><item><title>David modified a comment on ticket #2131</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2131/?limit=25#499c</link><description>I have the same error &amp; the synch fails. on synching contacts with google. Synching with calendar is not an issue. If I manually synch after this error, the synch works. The error then returns on the next automatic synch ^ again a manual synch works. This is a new issue. I have just changed computers and upgraded to Windows 11 &amp; Outlook classic (microsoft 365)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David</dc:creator><pubDate>Sun, 16 Nov 2025 02:35:00 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2131/?limit=25#499c</guid></item><item><title>David modified a comment on ticket #2131</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2131/?limit=25#499c</link><description>I have the same error &amp; the synch fails. on synching contacts with google. Synching with calendar is not an issue. If I manually synch after this error, the synch works. The error then returns on the next automatic synch ^ again a manual synch works. This is a new issue. I have just changed computers and upgraded to Windows 11 &amp; Outlook classic (microsoft 365)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David</dc:creator><pubDate>Sun, 16 Nov 2025 02:25:14 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2131/?limit=25#499c</guid></item><item><title>David posted a comment on ticket #2131</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2131/?limit=25#499c</link><description>I have the same error &amp; the synch fails. on synching contacts with google. Synching with calendar is not an issue. If I manually synch after this error, the synch works. The error then returns on the next automatic synch ^ again a manual synch works.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David</dc:creator><pubDate>Sun, 16 Nov 2025 02:22:21 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2131/?limit=25#499c</guid></item><item><title>Santiago Quer posted a comment on ticket #2132</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2132/?limit=25#8b4e</link><description>I've also attached the raw report</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Santiago Quer</dc:creator><pubDate>Mon, 10 Nov 2025 15:07:08 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2132/?limit=25#8b4e</guid></item><item><title>Santiago Quer created ticket #2132</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2132/</link><description>Can´t synchronize cPanel calendar with Outlook using CalDav Syncrhonizer</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Santiago Quer</dc:creator><pubDate>Mon, 10 Nov 2025 15:05:04 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2132/</guid></item><item><title>Paul Terry posted a comment on ticket #2131</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2131/?limit=25#61fc</link><description>Synchronization report attached</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Paul Terry</dc:creator><pubDate>Wed, 05 Nov 2025 07:07:58 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2131/?limit=25#61fc</guid></item><item><title>Paul Terry created ticket #2131</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2131/</link><description>Synchronization profile executed with errors</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Paul Terry</dc:creator><pubDate>Wed, 05 Nov 2025 07:07:18 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2131/</guid></item><item><title>ppdotnz64 created ticket #2130</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2130/</link><description>CalDav not loading after MS Outlook update</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ppdotnz64</dc:creator><pubDate>Fri, 31 Oct 2025 19:33:07 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2130/</guid></item><item><title>Aleksandar created ticket #2129</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2129/</link><description>SynologyContacts &amp; Outlook sync fails for large number of contacts</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Aleksandar</dc:creator><pubDate>Thu, 30 Oct 2025 21:16:08 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2129/</guid></item><item><title>Frank Heublein posted a comment on ticket #2126</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2126/?limit=25#44d4</link><description>Oh wunder, der GMX support hat mir nicht weitergeholfen, ich habe keine Auskunft erhalten, ob der Fehler auf GMX Seite das Syncen verhindert hat. Aber einfach mal zwei Wochen ins Land gehen lassen hat geholfen. Es war jedenfalls eine temporäre Sperre. Die Daten sind gesynct. Anbei die beiden Logs, wenn Ihr Euch das anschauen wollt. Ihr könnt das Ticket aus meiner Sicht schließen.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Frank Heublein</dc:creator><pubDate>Mon, 27 Oct 2025 14:12:33 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2126/?limit=25#44d4</guid></item><item><title>Alexander Nimmervoll modified ticket #2128</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2128/</link><description>CalDav nicht aktivierbar</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexander Nimmervoll</dc:creator><pubDate>Fri, 24 Oct 2025 19:17:56 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2128/</guid></item><item><title>Roland Hartmann posted a comment on ticket #2128</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2128/?limit=25#5c27</link><description>I think this ticket can be closed. Do not find an option to do it myself.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roland Hartmann</dc:creator><pubDate>Fri, 24 Oct 2025 18:46:42 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2128/?limit=25#5c27</guid></item><item><title>Roland Hartmann posted a comment on ticket #2128</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2128/?limit=25#0a5a</link><description>Additional found out - seems by replacing the motherboard also the Visio-Studio-Runtime was destroyed. Have downloaded and installed it over via the following link - and now it is running. Even with still the file:/// before. https://www.microsoft.com/de-de/download/details.aspx?id=105522</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roland Hartmann</dc:creator><pubDate>Fri, 24 Oct 2025 14:33:55 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2128/?limit=25#0a5a</guid></item><item><title>Roland Hartmann posted a comment on ticket #2128</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2128/?limit=25#ac0c</link><description>Found out, that the location for this add-in is stored as file:///C:\Program Files (x86)\CalDavSynchronizer\CalDavSynchronizer.vsto@vstolocal The working add-in's do not have this file:/// before. Have not found where the information is stored to eliminate this file:/// before to test. Maybe this is the issue?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roland Hartmann</dc:creator><pubDate>Fri, 24 Oct 2025 11:48:21 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2128/?limit=25#ac0c</guid></item><item><title>Roland Hartmann created ticket #2128</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2128/</link><description>CalDav nicht aktivierbar</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Roland Hartmann</dc:creator><pubDate>Fri, 24 Oct 2025 08:42:17 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2128/</guid></item><item><title>Alena Hatalová created ticket #2127</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2127/</link><description>CalDav connection issue</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alena Hatalová</dc:creator><pubDate>Thu, 23 Oct 2025 10:51:04 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2127/</guid></item><item><title>Frank Heublein created ticket #2126</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2126/</link><description>Sync Fehler too many events per interval for ownerId</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Frank Heublein</dc:creator><pubDate>Sat, 18 Oct 2025 15:10:30 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2126/</guid></item><item><title>Markus Klein created ticket #138</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/features/138/</link><description>Warning notification before deletion of batch of items</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Markus Klein</dc:creator><pubDate>Tue, 14 Oct 2025 10:33:56 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/features/138/</guid></item><item><title>Bolvári Attila created ticket #2125</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2125/</link><description>Icloud sync not working</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bolvári Attila</dc:creator><pubDate>Wed, 08 Oct 2025 14:03:50 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2125/</guid></item><item><title>jon posted a comment on ticket #2124</title><link>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2124/?limit=25#5580</link><description>whoops, lost the log file attachment which is here</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jon</dc:creator><pubDate>Fri, 26 Sep 2025 16:15:27 -0000</pubDate><guid>https://sourceforge.net/p/outlookcaldavsynchronizer/tickets/2124/?limit=25#5580</guid></item></channel></rss>