GNOME Bugzilla – Bug 724125
curlsmtpsink: Timezone information is missed out in the sending out smtp email header
Last modified: 2014-02-11 20:05:18 UTC
Created attachment 268801 [details] [review] Patch file after added the timezone information in the code. The bug happens in the file: gst-plugins-bad/gst-plugins-bad/ext/curl/gstcurlsmtpsink.c ---------------------------------------------------------------------------- The code : date_str = g_date_time_format (date, "%a %b %e %H:%M:%S %Y"); changed to date_str = g_date_time_format (date, "%a %b %e %H:%M:%S %Y %z"); ---------------------------------------------------------------------------- This is in order to add timezone information inside of sending out email header, so when the email arrived at the recipient, it won't show a wrong timestamp.
commit f3464e01bba5c7e918d4d1bec96e1a542d117935 Author: Lihua Liu <lihual@axis.com> Date: Tue Feb 11 15:20:58 2014 +0100 curlsmtpsink: Include timezone information in mail header https://bugzilla.gnome.org/show_bug.cgi?id=724125