mirror of
https://github.com/aluxnimm/outlookcaldavsynchronizer.git
synced 2026-04-25 11:05:56 +03:00
[GH-ISSUE #26] Timezone information needs to be synced #483
Labels
No labels
1.0
1.0
1.0
2.0
Feature
Feature request
Google
Google Calendar
async
attachement
auto-migrated
auto-migrated
auto-migrated
bug
critical
enhancement
help wanted
implemented
pull-request
solved
solved
sourceforge
sourceforge
sourceforge
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/outlookcaldavsynchronizer#483
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @aluxnimm on GitHub (Mar 26, 2015).
Original GitHub issue: https://github.com/aluxnimm/outlookcaldavsynchronizer/issues/26
Originally assigned to: @nertsch on GitHub.
Sncying an event from outlook to google calendar leads to incorrect timezone
The mapping in Map1To2 needs to be adjusted:
In Sogo it works but the raw source has no timezone info aswell:
BEGIN:VCALENDAR
PRODID:-//ddaysoftware.com//NONSGML DDay.iCal 1.0//EN
VERSION:2.0
BEGIN:VEVENT
DTEND:20150325T113000
DTSTAMP:20150326T083642Z
DTSTART:20150325T110000
PRIORITY:5
SEQUENCE:0
SUMMARY:bla
UID:ee2562b4-ec88-450d-bef7-685e7fd83b70
CLASS:PUBLIC
END:VEVENT
END:VCALENDAR
The correct event shoud look like:
BEGIN:VCALENDAR
PRODID:-//ddaysoftware.com//NONSGML DDay.iCal 1.0//EN
VERSION:2.0
BEGIN:VTIMEZONE
TZID:Europe/Vienna
X-LIC-LOCATION:Europe/Vienna
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
TZNAME:CEST
DTSTART:19700329T020000
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
TZNAME:CET
DTSTART:19701025T030000
RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTEND;TZID=Europe/Vienna:20150325T123000
DTSTAMP:20150326T083642Z
DTSTART;TZID=Europe/Vienna:20150325T120000
PRIORITY:5
SEQUENCE:0
SUMMARY:bla
UID:ee2562b4-ec88-450d-bef7-685e7fd83b70
CLASS:PUBLIC
LAST-MODIFIED:20150326T084419Z
TRANSP:OPAQUE
END:VEVENT
END:VCALENDAR
Original comment by: aluxnimm
Original Ticket: outlookcaldavsynchronizer/16
@aluxnimm commented on GitHub (Mar 26, 2015):
Code Snippet that works for me as a quick fix without syncing the actual timezone:
Original comment by: aluxnimm
@aluxnimm commented on GitHub (Mar 31, 2015):
Original comment by: nertsch