diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2007-02-14 15:33:40 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2007-02-14 15:33:40 +0000 |
commit | c361138493e8f0f5d6f7d66d362737d92dba1269 (patch) | |
tree | 2dd1ff51d508b0e75c32cc65dae4e801b600f655 /doc/doc-txt/NewStuff | |
parent | 29f89cad0cf7be1977f6ed36d27ac9b651aec9e2 (diff) |
Add "continue" modifier.
Diffstat (limited to 'doc/doc-txt/NewStuff')
-rw-r--r-- | doc/doc-txt/NewStuff | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/doc/doc-txt/NewStuff b/doc/doc-txt/NewStuff index b70fa5e68..677ab21aa 100644 --- a/doc/doc-txt/NewStuff +++ b/doc/doc-txt/NewStuff @@ -1,4 +1,4 @@ -$Cambridge: exim/doc/doc-txt/NewStuff,v 1.141 2007/02/14 14:59:01 ph10 Exp $ +$Cambridge: exim/doc/doc-txt/NewStuff,v 1.142 2007/02/14 15:33:40 ph10 Exp $ New Features in Exim -------------------- @@ -292,7 +292,7 @@ Version 4.67 option; with -I they don't. In both cases it is possible to change the case sensitivity within the pattern using (?i) or (?-i). -14. A number of new features have been added to string expansions to make it +16. A number of new features have been added to string expansions to make it easier to process lists of items, typically addresses. These are as follows: @@ -365,6 +365,16 @@ Version 4.67 At the end of a ${reduce expansion, the values of $item and $value is restored to what they were before. +17. There's a new ACL modifier called "continue". It does nothing of itself, + and processing of the ACL always continues with the next condition or + modifier. It is provided so that the side effects of expanding its argument + can be used. Typically this would be for updating a database. It is really + just a syntactic tidiness, because the following two lines have the same + effect: + + continue = <some expansion> + condition = ${if eq{0}{<some expansion>}{true}{true}} + Version 4.66 ------------ |