From efb66656e6c1095eed00c11d442f7e3b58c84449 Mon Sep 17 00:00:00 2001 From: Bobbi Webber-Manners Date: Mon, 29 Jun 2020 00:22:52 -0400 Subject: [PATCH] Fixed X-Mailer header. --- apps/email.c | 2 +- apps/pop65.c | 1 + apps/smtp65.c | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/email.c b/apps/email.c index 2955fd7..0a46f65 100644 --- a/apps/email.c +++ b/apps/email.c @@ -601,7 +601,7 @@ void write_email_headers(FILE *fp1, FILE *fp2, struct emailhdrs *h, char mode) { truncate_header(h->from, buf, 80); fprintf(fp2, "To: %s\r", (mode == 'R' ? buf : ""), buf); fprintf(fp2, "cc: \r"); - fprintf(fp2, "X-Mailer: %s - Apple ][ Forever!\r\r", PROGNAME); + fprintf(fp2, "X-Mailer: %s - Apple II Forever!\r\r", PROGNAME); if (mode == 'R') { truncate_header(h->date, buf, 40); fprintf(fp2, "On %s, ", buf); diff --git a/apps/pop65.c b/apps/pop65.c index 36b9ca3..3e12351 100644 --- a/apps/pop65.c +++ b/apps/pop65.c @@ -6,6 +6,7 @@ // Bobbi June 2020 ///////////////////////////////////////////////////////////////// +// TODO: Needs a DELETE option // TODO: EMAIL.n files should be type TXT // 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 diff --git a/apps/smtp65.c b/apps/smtp65.c index fc25ed0..2676cb2 100644 --- a/apps/smtp65.c +++ b/apps/smtp65.c @@ -6,6 +6,8 @@ // Bobbi June 2020 ///////////////////////////////////////////////////////////////// +// TODO See below + #include #include #include