aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/utils.c2
1 files changed, 2 insertions, 0 deletions
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");