This was a rather stupid bug... tlr -- http://home.pages.de/~roessler/
Index: sendlib.c =================================================================== RCS file: /home/roessler/cvsroot/mutt/sendlib.c,v retrieving revision 2.19 diff -u -u -r2.19 sendlib.c --- sendlib.c 1999/04/12 17:34:10 2.19 +++ sendlib.c 1999/04/20 19:24:47 @@ -1153,10 +1153,12 @@ struct tm *l = localtime (&t); time_t tz = mutt_local_tz (t); + tz /= 60; + snprintf (s, len, "Date: %s, %d %s %d %02d:%02d:%02d %+03d%02d\n", Weekdays[l->tm_wday], l->tm_mday, Months[l->tm_mon], l->tm_year + 1900, l->tm_hour, l->tm_min, l->tm_sec, - tz / 3600, abs (tz) % 3600); + tz / 60, abs (tz) % 60); return (s); }