Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-06-03 | Fix crash in transport, on second smtp-connect fail for a list of target hosts | Jeremy Harris | |
Reported as the sequence: 1MX: 554 on connect (banner) 2MX: TCP conn timeout | |||
2017-06-02 | Docs: add missing dollarsign | Jeremy Harris | |
2017-05-31 | Testsuite: stabilize output sequence for case 4530 | Jeremy Harris | |
2017-05-30 | Testsuite: stabilize output sequence for case 0906 | Jeremy Harris | |
2017-05-30 | Malware: make "sock" cmdline default usable. Bug 2111 | Jeremy Harris | |
2017-05-26 | doc: string2 not expanded, don't imply otherwise | Phil Pennock | |
A simple reading which skips the later paragraph would mislead people; this was remnant text from before the EXPAND_LISTMATCH_RHS changed the default behaviour. A couple of paragraphs later we contradicted this now-misleading parenthetical, but that's not enough. Nuke it. | |||
2017-05-25 | typo | Jeremy Harris | |
2017-05-21 | TLS: do not use DH_bits for LibreSSL; it is not supported (as of LibreSSL 2.3.2) | Jeremy Harris | |
2017-05-21 | Debug: more info during server-side authentication | Jeremy Harris | |
2017-05-21 | OpenSSL: add sender_host_address info to certificate verify error log ↵ | Jeremy Harris | |
messages when in verify callout | |||
2017-05-20 | Use DH_bits for OpenSSL 1.1.0 | Phil Pennock | |
Fixes bug 2095 | |||
2017-05-19 | TLS: PIPELINING under OpenSSL | Jeremy Harris | |
2017-05-17 | Testsuite: delays in 2x3[567] | Jeremy Harris | |
2017-05-17 | Testsuite: add delays for predictable log sequencing in 2x36, log-sorting ↵ | Jeremy Harris | |
for 2x38 | |||
2017-05-17 | TLS: do decent PIPELINING under TLS, at least with GnuTLS | Jeremy Harris | |
I've not found an equivalent in OpenSSL of gnutls_record_cork() nor gnutls_record_check_pending() yet. | |||
2017-05-14 | Revert "DANE: do not trust a non-dnssec NXDOMAIN return for the TLSA lookup" | Jeremy Harris | |
This reverts commit 5d6bdf01a921a88030e9baec7ba5f238da90e979. | |||
2017-05-09 | Add option commandline_checks_require_admin | Phil Pennock | |
May help with scenarios already so broken that bug report 2118 is actually an issue (Wordpress vuln). | |||
2017-05-07 | Testsuite: add DANE cases for DNS secure no-TLSA lookups | Jeremy Harris | |
2017-05-07 | Testsuite: add DANE testcase for TLSA lookup SERVFAIL | Jeremy Harris | |
2017-05-07 | DANE: do not trust a non-dnssec NXDOMAIN return for the TLSA lookup | Jeremy Harris | |
2017-05-07 | DANE: avoid info leak by checking TLSA dnssec before connecting to MX | Jeremy Harris | |
2017-05-07 | tidying | Jeremy Harris | |
2017-05-07 | Testsuite: fix fakens to not claim that an unsupported NXDOMAIN is dnssec-AD | Jeremy Harris | |
2017-05-06 | Enable use of sendfile on FreeBSD | Jeremy Harris | |
2017-05-06 | Enable use of sendfile on FreeBSD | Jeremy Harris | |
2017-05-06 | Teach SMTP input sync check ("input sent too soon") about SMTP input buffering | Jeremy Harris | |
2017-05-06 | Docs: add note on Received-By: header creation under cutthrough | Jeremy Harris | |
2017-05-04 | testsuite: tidying | Jeremy Harris | |
2017-05-04 | CHUNKING / wire-format spool: use block-copies for receiption | Jeremy Harris | |
2017-05-01 | testsuite output changes | Jeremy Harris | |
2017-05-01 | testsuite: tidying | Jeremy Harris | |
2017-05-01 | tidying: coverity | Jeremy Harris | |
2017-04-30 | Fix continue_more on TLS connection. Bug 2104 | Jeremy Harris | |
2017-04-30 | Docs: more info on wire-format spoolfiles | Jeremy Harris | |
2017-04-29 | tidying: coverity fixes | Jeremy Harris | |
2017-04-29 | Docs: describe operation of continued-connection TLS | Jeremy Harris | |
2017-04-28 | Support wire-format spoolfiles | Jeremy Harris | |
2017-04-26 | Enable use of sendfile | Jeremy Harris | |
2017-04-26 | Tweak debug output | Jeremy Harris | |
2017-04-24 | Docs: add 8BITMIME status field to log line info | Jeremy Harris | |
2017-04-24 | Docs: note that dkim_domain can take a list for signing | Jeremy Harris | |
2017-04-23 | Fix DISABLE_DKIM biuld | Jeremy Harris | |
2017-04-23 | DKIM: avoid use of temporary file for signing | Jeremy Harris | |
2017-04-18 | CHUNKING: pipeline data right after the BDAT command | Jeremy Harris | |
2017-04-17 | Reduce number of places knowing about filename-construction for mbox ↵ | Jeremy Harris | |
file-for-scanning | |||
2017-04-16 | Rework detection of multiple ports on a given IP, for the daemon status line | Jeremy Harris | |
Previously only spotted adjacent cases in the address list, now a full scan | |||
2017-04-16 | tidying | Jeremy Harris | |
2017-04-15 | Transport: fix smtp under combo of mua_wrapper and limited max_rcpt | Jeremy Harris | |
2017-04-14 | Builtin macros: note config trigger line in debug output | Jeremy Harris | |
2017-04-12 | $SOURCE_DATE_EPOCH support for build date stamp | Phil Pennock | |
If, and _only_ if, $SOURCE_DATE_EPOCH is found in environ during build, use it to set the timestamp embedded in the binary instead of using __DATE__ and __TIME__ cpp directives. This per <https://reproducible-builds.org/specs/source-date-epoch/> spec. It's sane and sensible, without removing date stamping which matters. The examples encourage packagers to use timestamps which do change when they backport patches, so that the date remains useful for distinguishing builds instead of claiming one date forever across multiple patchlevels. This change written so that the old behaviour and code is used if the environment variable is not found, to better continue to support ancient platforms with other variants of date(1). Built with and without an override, on macOS. |