X-Git-Url: https://git.exim.org/users/heiko/exim.git/blobdiff_plain/23c7ff99864ed699b3c6e547c1396a02eb6e4b73..3d23590382767a12bc27fb9e5f1c546293cf84b5:/doc/doc-txt/NewStuff diff --git a/doc/doc-txt/NewStuff b/doc/doc-txt/NewStuff index b8cf61cc9..19150e85f 100644 --- a/doc/doc-txt/NewStuff +++ b/doc/doc-txt/NewStuff @@ -1,4 +1,4 @@ -$Cambridge: exim/doc/doc-txt/NewStuff,v 1.5 2004/11/04 10:42:11 ph10 Exp $ +$Cambridge: exim/doc/doc-txt/NewStuff,v 1.8 2004/11/10 10:29:56 ph10 Exp $ New Features in Exim -------------------- @@ -33,6 +33,41 @@ Version 4.44 options control which type(s) of filtering are permitted. By default, both Exim and Sieve filters are allowed. + 6. A new option for callouts makes it possible to set a different (usually + smaller) timeout for making the SMTP connection. The keyword is "connect". + For example: + + verify = sender/callout=5s,connect=1s + + If not specified, it defaults to the general timeout value. + + 7. The new variables $sender_verify_failure and $recipient_verify_failure + contain information about exactly what failed. In an ACL, after one of + these failures, the relevant variable contains one of the following words: + + qualify the address was unqualified (no domain), and the message + was neither local nor came from an exempted host; + + route routing failed; + + mail routing succeeded, and a callout was attempted; rejection + occurred at or before the MAIL command (that is, on initial + connection, HELO, or MAIL); + + recipient the RCPT command in a callout was rejected; + + postmaster the postmaster check in a callout was rejected. + + The main use of these variables is expected to be to distinguish between + rejections of MAIL and rejections of RCPT. + + 8. The command line option -dd behaves exactly like -d except when used on a + command that starts a daemon process. In that case, debugging is turned off + for the subprocesses that the daemon creates. Thus, it is useful for + monitoring the behaviour of the daemon without creating as much output as + full debugging. + + Version 4.43 ------------