summaryrefslogtreecommitdiffstats
path: root/sendlib.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-09-02 11:17:34 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-09-02 11:17:34 +0000
commitbeafe1ed70094cea3491e477f76b913a3be037de (patch)
tree41ffd3f06c0234f7f8a48e80d73d204bbcc6de20 /sendlib.c
parentb65cbe0580878ddb8872c5681bde3546865b6a52 (diff)
A new edit-message feature, giving the raw message in an editor.
Diffstat (limited to 'sendlib.c')
-rw-r--r--sendlib.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/sendlib.c b/sendlib.c
index f407757c..f1c61cc2 100644
--- a/sendlib.c
+++ b/sendlib.c
@@ -1273,18 +1273,9 @@ int mutt_write_rfc822_header (FILE *fp, ENVELOPE *env, BODY *attach,
char buffer[LONG_STRING];
LIST *tmp = env->userhdrs;
- if (option(OPTUSEHEADERDATE) && !privacy)
- {
- if(env->date)
- fprintf(fp, "Date: %s\n", env->date);
- else
- fputs (mutt_make_date(buffer, sizeof(buffer)), fp);
- }
- else if (mode == 0 && !privacy)
+ if (mode == 0 && !privacy)
fputs (mutt_make_date (buffer, sizeof(buffer)), fp);
-
-
/* OPTUSEFROM is not consulted here so that we can still write a From:
* field if the user sets it with the `my_hdr' command
*/