aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-06-29 06:09:22 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-06-29 06:09:22 +0000
commiteb4ad7a7406af080c03c6af88430e8cd31e51225 (patch)
tree3cfaa31eb6e10f6e601aa79577f1cd4e6cf33b4e
parent524170a27870e583b8077bc4a35cfd0721458f18 (diff)
reverted the previous change of Date: header.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@383 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--src/utils.c2
3 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c28c795a..65683fc4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-29
+
+ * src/utils.c: get_outgoing_rfc2822_str(): reverted the previous
+ change (RFC 2822: 3.6.1. The origination date field).
+
2005-06-28
* src/utils.c: get_outgoing_rfc2822_str(): overwrite Date: header
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 8290dfbf..19157e0a 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,3 +1,8 @@
+2005-06-29
+
+ * src/utils.c: get_outgoing_rfc2822_str(): 前回の変更を元に戻した
+ (RFC 2822: 3.6.1. The origination date field)。
+
2005-06-28
* src/utils.c: get_outgoing_rfc2822_str(): Date: ヘッダを現在時刻で
diff --git a/src/utils.c b/src/utils.c
index 0e544f1a..f5ba1125 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -2632,9 +2632,11 @@ gchar *get_outgoing_rfc2822_str(FILE *fp)
if (fgets(buf, sizeof(buf), fp) == NULL)
break;
}
+#if 0
} else if (!g_ascii_strncasecmp(buf, "Date:", 5)) {
get_rfc822_date(buf, sizeof(buf));
g_string_append_printf(str, "Date: %s\r\n", buf);
+#endif
} else {
g_string_append(str, buf);
g_string_append(str, "\r\n");