mailpopbox.git
2020-08-08 Robert SesekBump version to 2.0.1. v2.0.1
2020-08-08 Robert SesekUpdate docs to cover contributing.
2020-08-08 Robert SesekMinor tweaks to the Github workflows.
2020-08-08 Robert SesekAdd Github workflows for CI and PRs.
2020-08-08 Robert SesekRewrite the Makefile to create release archives.
2020-08-08 Robert SesekLinkstamp the binaries when building with make.
2020-08-08 Robert SesekDelete old tlstest.mm
2020-08-08 Robert SesekLog when a send-as occurs.
2020-08-08 Robert SesekFix two typos in log messages.
2020-08-08 Robert SesekTweak the installation guide.
2020-08-02 Robert SesekWrite installation guide and clean up README.md.
2020-06-09 Robert SesekLog the hostname when starting up.
2020-06-09 Robert SesekClean up tests to use `if want, got := X, Y; want ...
2020-06-07 Robert SesekAdd more verbose pop3 connection logging.
2020-06-07 Robert SesekConvert some TODOs to log statements.
2020-06-07 Robert SesekRename smtp.Server.OnMessageDelievered to DeliverMessage.
2020-06-07 Robert SesekAdd missing license header to smtp/server_test.go. v2.0.0
2020-06-07 Robert SesekMerge branch 'outbound'
2020-06-07 Robert SesekAdd simple Makefile for common tasks.
2020-06-07 Robert SesekAdd some basic tests for the SMTP server component.
2020-06-07 Robert SesekAdd tests for the pop3 server component.
2020-06-06 Robert SesekFix TLS connection in relayMessageToHost. v2.0.0-beta.2
2020-06-06 Robert SesekFormat the Reporting-MTA in DSN messages per the spec.
2020-06-06 Robert SesekFix incorrect delivery-status Content-Type.
2020-06-06 Robert SesekUpdate smtp.connection.getTransportString cipher map.
2020-06-06 Robert SesekProduce delivery-status failure notifications when...
2020-05-24 Robert SesekUpdates for the latest zap. v2.0.0-beta.1
2020-05-24 Robert SesekMerge branch 'master' into outbound
2020-05-24 Robert SesekEnable Go modules and upgrade zap to 1.15.0.
2020-05-24 Robert SesekUpgrade zap to the 1.0.0 release.
2020-05-24 Robert SesekStop using smtp.SendMail to relay messages.
2020-05-23 Robert SesekAdd license information.
2020-04-30 Robert SesekChange the send-as functionality to use a string in...
2020-04-30 Robert SesekHandle initial responses for AUTH PLAIN.
2020-04-30 Robert SesekAdd support for outbound SMTP delivery.
2019-09-13 Robert SesekSet OOM properties on mailpopbox.service. v1.2.1
2018-09-06 Robert SesekIn smtp/conn_test.go, testServer.verifyAddress should...
2018-09-05 Robert SesekImplement AUTH PLAIN authentication extensions in SMTP.
2018-09-03 Robert SesekRemove smtp.Server.OnEHLO.
2018-09-03 Robert SesekAdd a SMTP test for STARTTLS.
2018-09-03 Robert SesekAdd smtp.DomainForAddress.
2018-09-03 Robert SesekMove the mailbox@ string to a MailboxAccount constant.
2017-04-07 Robert SesekSupport reloading the TLS config via SIGHUP. v1.2.0
2017-01-17 Robert SesekLower-case the addresses in smtp.conn.parsePath. v1.1.1
2017-01-02 Robert SesekEnsure stable message list order in pop3/conn_test.go. v1.1.0
2017-01-02 Robert SesekImplement the POP3 CAPA command from RFC 2449.
2017-01-02 Robert SesekAdd more logging for the POP3 server.
2017-01-02 Robert SesekFix slice range panics in the POP3 USER and PASS commands.
2017-01-02 Robert SesekFix pop3.Mailbox.Reset implementation.
2017-01-02 Robert SesekImplement the POP3 UIDL command.
2017-01-02 Robert SesekAdd better logging in the pop3 connection.
2017-01-02 Robert SesekAdd list of RFCs to the README.
2017-01-02 Robert SesekFix post-STARTTLS protocol bug.
2017-01-01 Robert SesekDo not keep around the old net.Conn when doing SMTP...
2017-01-01 Robert SesekAdd small program to help debug TLS issues using a...
2016-12-18 Robert SesekAllow additional parameters after the address in smtp... v1.0.0
2016-12-18 Robert SesekDo not break out of a switch, use return.
2016-12-18 Robert SesekFix not handling invalid RCPT TO addresses.
2016-12-18 Robert SesekAdd more logging to debug production issues.
2016-12-18 Robert SesekBreak out of the connection loops if EOF is reached.
2016-12-18 Robert SesekAdd zap logging through the servers.
2016-12-18 Robert SesekAdd a systemd unit file for the server.
2016-12-18 Robert SesekFormat the TLS string in the receive-trace.
2016-12-18 Robert SesekImplement STARTTLS in the SMTP server.
2016-12-18 Robert SesekSupport TLS in POP3.
2016-12-17 Robert SesekStart saving SMTP messages in the maildrop.
2016-12-17 Robert SesekWhen receiving a message, the SMTP server must add...
2016-12-17 Robert SesekAdd a test for POP3 RETR.
2016-12-17 Robert SesekFix case sensitivity in the POP3 sever.
2016-12-14 Robert SesekHandle case-insensitivity properly for SMTP commands.
2016-12-14 Robert SesekDo not implement SMTP VRFY.
2016-12-14 Robert SesekAdd a test for the POP3 server.
2016-12-13 Robert SesekGo back to using pop3.Message rather than IDs for most...
2016-12-13 Robert SesekImplement POP3 LIST, RETR, and DELE.
2016-12-13 Robert SesekInitial POP3 server.
2016-12-13 Robert SesekComplete the unittest by adding smtp.Server.VerifyAddress.
2016-12-13 Robert SesekAdd the first test for SMTP connections, based on the...
2016-12-12 Robert SesekSupport SMTP along with ESMTP.
2016-12-12 Robert SesekDefine an smtp.Envelope that can be delivered to an...
2016-12-12 Robert SesekA basic SMTP server.
2016-12-12 Robert SesekSimple accept/listen loop for the SMTP server.
2016-12-12 Robert SesekLay out basic config file structure.
2016-12-12 Robert SesekThe mission statement.