aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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");