PostMail is an HTTP-based email protocol I'm implementing because I'm sick of how stuck in the 90s email servers feel. I use HTTP POST and a little bit of DNS shenanigans to get compatibility and am working on a demo.
Any domain has a DNS record, a TXT
record called POSTMAIL
if PostMail is supposed to be supported. It should be set to the prefix of the current domain.
For example, example.com
is configured to receive PostMail at postmail-sys.example.com
. The TXT record should be set to postmail-sys
If the TXT record is nonexistent, assume the server does not support PostMail and fall back to previous designs.
You can use a full domain for PostMail, however, standard email addresses are acceptable (within reason).
For a PostMail endpoint, postmail-sys.example.com
by DNS TXT record, the email address [email protected] would resolve to the PostMail URL of
https://postmail-sys.example.com/test
.
Not any HTTP POST request to the PostMail endpoint is acceptable. It should be assumed that emails not signed with PGP keys that are not published on public key server will be discarded. Thus, all PostMails must be signed with a PGP key that has its public key published. This allows the recipient to identify the sender, as well as implementing key blacklisting services.
In the post request the Content-length
header MUST be speficied and servers SHOULD abort any acceptance that results in more data being sent than expected.
All POSTs should be done over HTTPS using modern TLS security, however, anything is acceptable.
identify
is an invalid endpoint for an inbox as in the examples, https://postmail-sys.example.com/identify
could be used for a server to identify itself and its compatibilities for negotiation of security,
All standard HTTP response codes apply. Any and all redirects will be treated as if the server is not accepting emails at this time and will cause the email client to revert back to standard email.
I felt like email was stuck in the 90s and with modern web tech we can make a better solution. I'll be making a minimum working example in the coming days for this, so keep your eyes peeled for PostMail stuff from me.