From 87d4b8e94ff7a443b58c850153e195ad3da20048 Mon Sep 17 00:00:00 2001 From: Bobbi Webber-Manners Date: Tue, 30 Jun 2020 02:33:06 -0400 Subject: [PATCH] Fixed bug - X-Mailer: header missing when creating blank email --- apps/email.c | 1 + apps/pop65.c | 1 + 2 files changed, 2 insertions(+) diff --git a/apps/email.c b/apps/email.c index e3e0748..ae78101 100644 --- a/apps/email.c +++ b/apps/email.c @@ -1048,6 +1048,7 @@ void create_blank_outgoing() { fprintf(fp, "Date: %s\n", userentry); prompt_for_name("cc", 0); fprintf(fp, "cc: %s\n\n", userentry); + fprintf(fp, "X-Mailer: %s - Apple II Forever!\r\r", PROGNAME); fclose(fp); // Update dest/NEXT.EMAIL, incrementing count by 1 diff --git a/apps/pop65.c b/apps/pop65.c index 1f15a3b..25f39be 100644 --- a/apps/pop65.c +++ b/apps/pop65.c @@ -6,6 +6,7 @@ // Bobbi June 2020 ///////////////////////////////////////////////////////////////// +// TODO: BUG screen corruption after DELE command w/ spinner. // TODO: The way CRLF.CRLF is detected will not work if split across packets // We can probably fix this by copying the last 4 bytes of each buffer // to before the beginning of the next