Bump the version to 2.1.0.
[mailpopbox.git] / smtp / conn.go
2022-06-12 Robert SesekMove send-as handling out of the smtp package and into...
2021-07-28 MoryaFix: reply 235 when client auth success, according...
2020-08-08 Robert SesekLog when a send-as occurs.
2020-06-07 Robert SesekRename smtp.Server.OnMessageDelievered to DeliverMessage.
2020-06-07 Robert SesekMerge branch 'outbound'
2020-06-06 Robert SesekFormat the Reporting-MTA in DSN messages per the spec.
2020-06-06 Robert SesekUpdate smtp.connection.getTransportString cipher map.
2020-06-06 Robert SesekProduce delivery-status failure notifications when...
2020-05-24 Robert SesekMerge branch 'master' into outbound
2020-05-24 Robert SesekUpgrade zap to the 1.0.0 release.
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.
2018-09-05 Robert SesekImplement AUTH PLAIN authentication extensions in SMTP.
2017-01-17 Robert SesekLower-case the addresses in smtp.conn.parsePath. v1.1.1
2017-01-02 Robert SesekFix post-STARTTLS protocol bug.
2017-01-01 Robert SesekDo not keep around the old net.Conn when doing SMTP...
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 SesekFormat the TLS string in the receive-trace.
2016-12-18 Robert SesekImplement STARTTLS in the SMTP server.
2016-12-17 Robert SesekWhen receiving a message, the SMTP server must add...
2016-12-14 Robert SesekHandle case-insensitivity properly for SMTP commands.
2016-12-14 Robert SesekDo not implement SMTP VRFY.
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.