Show HN: EmailEngine, open source REST interface to read and send email messages
TheSpiciestDev 2021-08-18 02:37:24 +0000 UTC [ - ]
Out of curiosity, are there any other comparable projects you know of? I wondering what I had to have searched for in the past hah
andris9 2021-08-18 04:51:46 +0000 UTC [ - ]
anilgulecha 2021-08-18 07:30:12 +0000 UTC [ - ]
link: jmap.io
andris9 2021-08-18 10:24:52 +0000 UTC [ - ]
EmailEngine on the other hand is not an email server but more like a reverse proxy, it takes REST commands from the client and sends IMAP/SMTP commands to the account's email server. So for the email server it looks like that the client is speaking IMAP/SMTP and for the client it seems that the server is speaking REST/JSON.
Additionally EmailEngine performs tasks that are hard to do when dealing with a regular IMAP server. For example it tracks changes on the account, so if something is added or deleted, then EmailEngine sends a webhook notification for it.
If you are interacting with an IMAP server directly then usually you see that a folder has fewer emails stored in it than during the previous check but there is no indication which messages were actually deleted.
fullstackjob 2021-08-19 03:20:57 +0000 UTC [ - ]