diff --git a/README-emailler.md b/README-emailler.md index b646a42..e8ed8f0 100644 --- a/README-emailler.md +++ b/README-emailler.md @@ -72,6 +72,8 @@ The easiest way to create additional mailboxes is using the `N)ew` command in `E ## `POP65.SYSTEM` +

Summary Screen

+ POP65 is a Post Office Protocol v3 (POP3) client for the Apple II. It requires an Uthernet-II ethernet card and will not work with other interfaces without modification, because it uses the W5100 hardware TCP/IP stack. POP65 is used to download new email messages from a POP3 email server. (I use Dovecot on the Raspberry Pi as my POP3 server, but other POP3 servers should work too.) Before running `POP65.SYSTEM` for the first time, be sure you have created the email root directory and the `SPOOL` directory, as described above. POP3 will initialize the `INBOX` mailbox, creating `NEXT.EMAIL` and `EMAIL.DB` files if they do not exist. @@ -153,6 +155,8 @@ Main menu commands: ## `SMTP65.SYSTEM` +

Summary Screen

+ SMTP65 is a Simple Mail Transport Protocol (SMTP65) client for the Apple II. It requires an Uthernet-II ethernet card and will not work with other interfaces without modification, because it uses the W5100 hardware TCP/IP stack. POP65 is used to send outgoing email messages to an SMTP email server. (I use Postfix on the Raspberry Pi as my SMTP server, but other SMTP servers should work too.) Before running SMTP65 for the first time, be sure to have created the `SENT` mailbox. This must be a 'proper' mailbox, not just a directory. You may create a mailbox using the `N)ew` command in `EMAIL.SYSTEM`. diff --git a/apps/email.c b/apps/email.c index a4fdfca..f976d48 100644 --- a/apps/email.c +++ b/apps/email.c @@ -4,6 +4,7 @@ // Bobbi June 2020 ///////////////////////////////////////////////////////////////// +// - TODO: When forwarding, prompt for To & Cc // - TODO: Update To/From if reply or forward // - TODO: Fix terrible scrollback algorithm!! // - TODO: Editor for email composition functions @@ -766,7 +767,7 @@ uint8_t write_email_headers(FILE *fp1, FILE *fp2, struct emailhdrs *h, char mode truncate_header(h->from, buf, 80); fprintf(fp2, "%s wrote:\r\r", buf); } else { - fprintf(fp2, "-------- Forwarded Message --------\n"); + fprintf(fp2, "-------- Forwarded Message --------\r"); truncate_header(h->subject, buf, 80); fprintf(fp2, "Subject: %s\r", buf); truncate_header(h->date, buf, 40); diff --git a/img/POP65.jpg b/img/POP65.jpg new file mode 100644 index 0000000..6a4164d Binary files /dev/null and b/img/POP65.jpg differ diff --git a/img/SMTP65.jpg b/img/SMTP65.jpg new file mode 100644 index 0000000..85313da Binary files /dev/null and b/img/SMTP65.jpg differ