Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-02 | Docs: fix layout | Jeremy Harris | |
2020-06-02 | Taint: fix listcount expansion operator. Bug 2586 | Jeremy Harris | |
2020-06-02 | Taint: fix pam expansion condition. Bug 2587 | Jeremy Harris | |
2020-06-02 | Docs: ${listitem } | Jeremy Harris | |
2020-06-01 | Merge branch '4.next' | Jeremy Harris | |
2020-06-01 | Docs: tidy for next release | Jeremy Harris | |
2020-05-29 | Fix format of maildir filenames. Bug 1329 | Andreas Metzler | |
2020-05-26 | Quota checking during reception. Bug 163 | Jeremy Harris | |
2020-05-24 | Docs: SPF options | Jeremy Harris | |
2020-05-23 | Doc: Clarify variables for spf_smtp_comment_template | Heiko Schlittermann (HS12-RIPE) | |
2020-05-22 | SPF: Add main config option "spf_smtp_comment_templateexim-4.94-RC2 | Heiko Schlittermann (HS12-RIPE) | |
2020-05-22 | SPF: Remove the parameters of the broken explanation link | Heiko Schlittermann (HS12-RIPE) | |
The complete www.open-spf.org is a static copy of the formerly working openspf.org page. The explanation form doesn't work anymore. | |||
2020-05-17 | Lookups: cache=no_rd option. Bug 1751 | Jeremy Harris | |
2020-05-16 | Docs: options on lookups | Jeremy Harris | |
2020-05-16 | Docs: DMARC options | Jeremy Harris | |
2020-05-16 | Docs: chapter title | Jeremy Harris | |
Broken-by: 7adc9ca07a | |||
2020-05-13 | smtp transport: message_linelength_limit option. Bug 1684 | Jeremy Harris | |
2020-05-13 | Fix over-long line in DSN | Jeremy Harris | |
2020-05-12 | Docs: fix typo | Jeremy Harris | |
2020-05-12 | Docs: set message after conditions in ACL verb wherever possible | Jeremy Harris | |
2020-05-12 | Docs: fast-ramp two-phase queue run | Jeremy Harris | |
2020-05-12 | Move the LMDB lokup support from Experimental to mainline | Jeremy Harris | |
2020-05-10 | Fix build with older GnuTLS | Jeremy Harris | |
Broken-by: 2983e1a616 | |||
2020-05-10 | Move the TLS resumption support from Experimental to mainline | Jeremy Harris | |
2020-05-09 | Move the native SRS implementation from Experimental to mainline | Jeremy Harris | |
2020-05-09 | Rename EXPERIMENTAL_SRS to EXPERIMENTAL_SRS_ALT | Jeremy Harris | |
2020-05-09 | Move the fast-ramp two phase queue run support from Experimental to the mainline | Jeremy Harris | |
2020-05-08 | Docs: tweaks | Jeremy Harris | |
2020-05-07 | Lookups: ret=key option | Jeremy Harris | |
2020-05-07 | I18N: change default on smtp transport, to downconvert-when-needed | Jeremy Harris | |
2020-05-07 | Docs: clarify downconversion of internationalized addresses | Jeremy Harris | |
2020-05-07 | Docs: ESMTP extensions indexing | Jeremy Harris | |
2020-05-06 | Numeric variable returns | Jeremy Harris | |
2020-05-06 | testcases for value return | Jeremy Harris | |
2020-05-06 | docs & more debug | Jeremy Harris | |
2020-05-05 | Fix SPA authenticator, checking client-supplied data before using it. Bug 2571 | Jeremy Harris | |
2020-05-05 | Ensure lookup-result variables are dropped between messages on a connection | Jeremy Harris | |
2020-05-05 | Docs: tweaks | Jeremy Harris | |
2020-05-04 | Consolidate $local_part_verified into $local_part_data | Jeremy Harris | |
This removes the former; the latter having been around since before the last release. The router check_local_user option now writes the latter and -verified no longer exists. | |||
2020-05-04 | Docs: local-part affix variables | Jeremy Harris | |
2020-05-04 | Taint: When a non-wildcarded localpart affix is matched in a router, | Jeremy Harris | |
make affix variables untainted | |||
2020-05-04 | Make {bounce,warn}_message_file expanded. Bug 2522 | Jeremy Harris | |
2020-05-02 | Docs: fix mention of (the nonexistent) $domain_verified. Bug 2567 | Andreas Metzler | |
Broken-by: 163144aab0 | |||
2020-05-01 | Docs: fix more uses of $local_part in examples | Jeremy Harris | |
2020-05-01 | Docs: use verified version of local_part variable in router require_files ↵ | Andreas Metzler | |
example | |||
2020-04-30 | Copyright updates:exim-4_94_RC0 | Jeremy Harris | |
vi $(git log --name-status exim-4.93..master | awk '/^M/{print $2}' | grep -v '^test/' | sort -u) | |||
2020-04-26 | DKIM: dkim_verify_min_keysizes option | Jeremy Harris | |
2020-04-25 | DKIM: fix $dkim_key_length in verify | Jeremy Harris | |
2020-04-22 | readsocket expansion: response caching | Jeremy Harris | |
2020-04-21 | stop-gap: doc glibc 2.31 RES_TRUSTAD/trust-ad | Phil Pennock | |
In glibc from release 2.31 onwards (change added in their commit 446997ff14) setting `dns_dnssec_ok` will not be sufficient. glibc has added a new `options trust-ad` toggle for `/etc/resolv.conf` and a C macro `RES_TRUSTAD`. This will break existing deployments and binaries. Our current mechanism for enabling DNSSEC is with an option named to closely match the DNS feature required, so it is probably inappropriate to tinker with a second option there. Instead we probably need a new meta-option for the concept of DNSSEC, add the second new flag there, and move `dns_dnssec_ok` to a legacy deprecated option. That will only work if the machine Exim is built on has the new C macro, but will need to be conditional upon that macro being defined, so binaries built aren't going to be forward-compatible to other systems with newer glibc. There is no good solution to solve this. In the meantime, document the issue and point administrators at how to work around the issue with a setting in `/etc/resolv.conf` Thanks to Viktor Dukhovni for highlighting the existence of this problem. |