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