X-Git-Url: https://git.exim.org/users/jgh/exim.git/blobdiff_plain/c38d6da94aa327f7c42a90b50508c62702412fef..1f5b4c3d3200be53a3a6f2bf6791b70fc543b32f:/doc/doc-txt/NewStuff diff --git a/doc/doc-txt/NewStuff b/doc/doc-txt/NewStuff index b4fda862d..bf9890bb3 100644 --- a/doc/doc-txt/NewStuff +++ b/doc/doc-txt/NewStuff @@ -1,4 +1,4 @@ -$Cambridge: exim/doc/doc-txt/NewStuff,v 1.19 2004/11/25 14:31:28 ph10 Exp $ +$Cambridge: exim/doc/doc-txt/NewStuff,v 1.23 2004/12/22 12:05:45 ph10 Exp $ New Features in Exim -------------------- @@ -9,7 +9,7 @@ updated when there is a relatively large batch of changes). The doc/ChangeLog file contains a listing of all changes, including bug fixes. -Version 4.44 +Version 4.50 ------------ 1. There is a new build-time option called CONFIGURE_GROUP which works like @@ -152,9 +152,21 @@ Version 4.44 single item are handled. The dnsdb lookup fails only if all the DNS lookups fail. If there is a - temporary DNS error for any of them, the remaining lookups are still done, - and only if none of them succeed does the dnsdb lookup defer. As long as at - least one of the DNS lookups yields some data, the dnsdb lookup succeeds. + temporary DNS error for any of them, the behaviour is controlled by + an optional keyword followed by a comma that may appear before the record + type. The possible keywords are "defer_strict", "defer_never", and + "defer_lax". With "strict" behaviour, any temporary DNS error causes the + whole lookup to defer. With "never" behaviour, a temporary DNS error is + ignored, and the behaviour is as if the DNS lookup failed to find anything. + With "lax" behaviour, all the queries are attempted, but a temporary DNS + error causes the whole lookup to defer only if none of the other lookups + succeed. The default is "lax", so the following lookups are equivalent: + + ${lookup dnsdb{defer_lax,a=one.host.com:two.host.com}} + ${lookup dnsdb{a=one.host.com:two.host.com}} + + Thus, in the default case, as long as at least one of the DNS lookups + yields some data, the dnsdb lookup succeeds. 15. It is now possible to specify the character to be used as a separator when a dnsdb lookup returns data from more than one DNS record. The default is a @@ -219,6 +231,22 @@ Version 4.44 This is helpful when the system filter adds header lines or sets filter variables that are used by the user filter. +19. The Exiscan patch is now merged into the main source. See src/EDITME for + parameters for the build. + +20. If the key for a dnsdb lookup is not an IP address, it is used verbatim, + without component reversal and without the addition of in-addr.arpa or + ip6.arpa. + +21. Two changes related to the smtp_active_hostname option: + + (1) $smtp_active_hostname is now available as a variable. Its value + sticks with the message and is therefore available in routers and + transports at delivery time. + + (2) The default for smtp_banner uses $smtp_active_hostname instead + of $primary_hostname. + Version 4.43 ------------