View Issue Details

IDProjectCategoryView StatusLast Update
0000248Funambol SOGo Connectorpublic2010-06-04 15:13
Reporterjaywalker Assigned Toludovic  
PrioritynormalSeverityminorReproducibilitysometimes
Status resolvedResolutionfixed 
Product Version1.0.6 
Fixed in Version1.0.8 
Summary0000248: time offset when syncing events from Nokia 6267 to SOGo server
Description

When syncing events between SOGo and a Nokia 6267 (Symbian S40), I sometimes get a strange time offset. It occurs when the event is sent from the mobile to the server, and only shows up in the web UI (the event appears one hour later than it really is). However, when double-clicking the event in the web ui, the edit window shows correct times. Thunderbird (CalDAV) also shows correct times.
Timezone is set to Europe/Berlin in all client and server applications, on the mobile and in funambol's device settings for the Nokia.

TagsNo tags attached.

Activities

ludovic

ludovic

2009-11-30 18:58

administrator   ~0000319

I suspect that the getStartDate / getEndDate of SOGoEventUtilities.java are wrong, in particular, that part:

        if ((!SOGoUtilities.getDeviceUTC(context) && !str_end.endsWith("Z")) || event.isAllDay()) {       
            formatter.setTimeZone(SOGoUtilities.getUserTimeZone(source, context, log));
        } else {                        
            formatter.setTimeZone(TimeZone.getTimeZone("GMT"));
        }

Could you try with:

        if (!str_end.endsWith("Z") || event.isAllDay()) {     
            formatter.setTimeZone(SOGoUtilities.getUserTimeZone(source, context, log));
        } else {                        
            formatter.setTimeZone(TimeZone.getTimeZone("GMT"));
        }

and let me know about your findings?

jaywalker

jaywalker

2009-12-03 16:46

reporter   ~0000328

Hi,

unfortunately this is not particularly easy for me, because I installed from binary packages and do not know where the java file is located and how to produce the .jar files of the Funambol connector.
I will try to find that out, but that will take about two weeks or so...

Best regards
Heiner

ludovic

ludovic

2010-03-19 18:30

administrator   ~0000765

Can you try with 1.0.7?

ludovic

ludovic

2010-06-04 15:13

administrator   ~0001093

No feedback provided in many weeks. Closing for now.

Issue History

Date Modified Username Field Change
2009-11-16 19:06 jaywalker New Issue
2009-11-30 18:58 ludovic Note Added: 0000319
2009-12-03 16:46 jaywalker Note Added: 0000328
2010-03-19 18:30 ludovic Note Added: 0000765
2010-06-04 15:13 ludovic Note Added: 0001093
2010-06-04 15:13 ludovic Status new => resolved
2010-06-04 15:13 ludovic Fixed in Version => 1.0.8
2010-06-04 15:13 ludovic Resolution open => fixed
2010-06-04 15:13 ludovic Assigned To => ludovic