hello,
here is a RC, but i get a small problem, with represent of date (exactly time).
here is a part of email header:
================================ Delivered-To: airween@damson.hu Received: from damson (localhost [127.0.0.1]) by damson (Postfix) with SMTP id 9B1A329599A for airween@damson.hu; Wed, 12 Apr 2006 16:01:40 +0200 (CEST) ================================
as you can see, mail comes at 16:01, CEST TZ. System clock is strait, and timestamp of file in out mailbox is also correctly.
all 'Received' header of mail contains this TZ, I'm using hungarian time timezone (GMT + 0100h), but RC displays it with -1 hour.
what is the problem?
thanks:
a.
I guess Hungary has daylight saving time as the rest of Europe. DST is ignored by RoundCube 0.1beta (available in CVS now) and you have to shift your timezone by 1 hour in order to see the correct time again.
Regards, Thomas
Hegedüs Ervin wrote:
hello,
here is a RC, but i get a small problem, with represent of date (exactly time).
here is a part of email header:
================================ Delivered-To: airween@damson.hu Received: from damson (localhost [127.0.0.1]) by damson (Postfix) with SMTP id 9B1A329599A for airween@damson.hu; Wed, 12 Apr 2006 16:01:40 +0200 (CEST) ================================
as you can see, mail comes at 16:01, CEST TZ. System clock is strait, and timestamp of file in out mailbox is also correctly.
all 'Received' header of mail contains this TZ, I'm using hungarian time timezone (GMT + 0100h), but RC displays it with -1 hour.
what is the problem?
thanks:
a.
Hello Thomas,
On Wed, 12 Apr 2006 16:29:06 +0200, Thomas Bruederli roundcube@gmail.com wrote:
I guess Hungary has daylight saving time as the rest of Europe. DST is ignored by RoundCube 0.1beta (available in CVS now) and you have to shift your timezone by 1 hour in order to see the correct time again.
ok,
than, I think I can select between two solution:
this problem comes not just for me, it comes for all users - I think I can't tell to anybody: 'please change your TZ setting' :)
any workaround?
thanks:
a.
Hegedüs Ervin wrote:
Hello Thomas,
On Wed, 12 Apr 2006 16:29:06 +0200, Thomas Bruederli roundcube@gmail.com wrote:
I guess Hungary has daylight saving time as the rest of Europe. DST is ignored by RoundCube 0.1beta (available in CVS now) and you have to shift your timezone by 1 hour in order to see the correct time again.
ok,
than, I think I can select between two solution:
- upgrade RC (the live system is an old version, about 20060112)
- choose another TZ
this problem comes not just for me, it comes for all users - I think I can't tell to anybody: 'please change your TZ setting' :)
any workaround?
Add +1 to $CONFIG['timezone'] in function format_date() within program/include/main.inc
This should do it until October when DST will off...
thanks:
a.
~Thomas