Added screenshots of POP65 and SMTP64

This commit is contained in:
Bobbi Webber-Manners 2020-06-30 20:58:50 -04:00
parent 8c1a587c2f
commit ec3e4d8e8a
4 changed files with 6 additions and 1 deletions

View File

@ -72,6 +72,8 @@ The easiest way to create additional mailboxes is using the `N)ew` command in `E
## `POP65.SYSTEM`
<p align="center"><img src="img/POP65.jpg" alt="Summary Screen" height="400px"></p>
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`
<p align="center"><img src="img/SMTP65.jpg" alt="Summary Screen" height="400px"></p>
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`.

View File

@ -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);

BIN
img/POP65.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

BIN
img/SMTP65.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB