X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=doc%2Fdoc-txt%2FNewStuff;h=06c6760500e583cb3530d9ed84612e68bade1d72;hb=c46782effbf7f5ecde21a8d29cb22b42fda0fe8e;hp=04fedd63344575ae2c1582b5f3396e4eeb94322a;hpb=30dba1e609d941013dc8421de5104dad387ac5b1;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/doc/doc-txt/NewStuff b/doc/doc-txt/NewStuff index 04fedd633..06c676050 100644 --- a/doc/doc-txt/NewStuff +++ b/doc/doc-txt/NewStuff @@ -1,4 +1,4 @@ -$Cambridge: exim/doc/doc-txt/NewStuff,v 1.91 2006/02/28 11:25:40 ph10 Exp $ +$Cambridge: exim/doc/doc-txt/NewStuff,v 1.94 2006/03/02 12:25:48 ph10 Exp $ New Features in Exim -------------------- @@ -98,6 +98,26 @@ PH/14 Messages created by the autoreply transport now contain a References: and then the final 11 are copied, before adding the message ID of the incoming message. +PH/15 The smtp transport has a new option called authenticated_sender_force. + When set true, it allows the authenticated_sender option's value to be + used, even if Exim has not authenticated as a client. + +PH/16 The expansion ${time_eval:} converts an Exim time string such as + 2d4h1m into a number of seconds. + +PH/17 The ACL modifier control=allow_auth_unadvertised can be used to permit a + client host to use the SMTP AUTH command even when it has not been + advertised in response to EHLO. Furthermore, because there are apparently + some really broken clients that do this, Exim will even accept AUTH after + HELO when this control is set. It should only be used if you really need + it, and you should limit its use to those broken hosts that do not work + without it. For example: + + warn hosts = 192.168.34.25 + control = allow_auth_unadvertised + + This control is permitted only in the connection and HELO ACLs. + Version 4.60 ------------