diff --git a/NEWS b/NEWS index 15e40b0ea..4c311b9fa 100644 --- a/NEWS +++ b/NEWS @@ -7,6 +7,7 @@ New features Bug fixes - don't unescape twice mail folder names (#3423) - don't consider mobile Outlook EAS clients as DAV ones (#3431) + - we now follow 301 redirects when fetching ICS calendars 2.3.5 (2016-01-05) ------------------ diff --git a/SoObjects/Appointments/SOGoWebAppointmentFolder.m b/SoObjects/Appointments/SOGoWebAppointmentFolder.m index cb4c7543c..5ee97a671 100644 --- a/SoObjects/Appointments/SOGoWebAppointmentFolder.m +++ b/SoObjects/Appointments/SOGoWebAppointmentFolder.m @@ -138,6 +138,7 @@ size_t curl_body_function(void *ptr, size_t size, size_t nmemb, void *buffer) curl_easy_setopt (curl, CURLOPT_SSL_VERIFYPEER, 0L); curl_easy_setopt (curl, CURLOPT_SSL_VERIFYHOST, 0L); curl_easy_setopt (curl, CURLOPT_TIMEOUT, 60L); + curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); authInfos = [self _loadAuthData]; if (authInfos)