diff options
author | Tony Finch <dot@dot.at> | 2005-05-25 09:58:16 +0000 |
---|---|---|
committer | Tony Finch <dot@dot.at> | 2005-05-25 09:58:16 +0000 |
commit | 3348576fbe3b012b66076e49e5414cd04bbafbaa (patch) | |
tree | cdfe3478f172592df7e4ffbee2538baedb341f9e /doc/doc-txt/NewStuff | |
parent | 958541e992051a5afcf573985eb5d4e772dc6979 (diff) |
Change the result of the ratelimit ACL condition when clients are sending
exactly at the limit, in order to improve the behaviour of certain edge
cases. The result was FAIL (under limit) and it's now OK (over limit).
Diffstat (limited to 'doc/doc-txt/NewStuff')
-rw-r--r-- | doc/doc-txt/NewStuff | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/doc-txt/NewStuff b/doc/doc-txt/NewStuff index e0d87c44a..143fb6cb0 100644 --- a/doc/doc-txt/NewStuff +++ b/doc/doc-txt/NewStuff @@ -1,4 +1,4 @@ -$Cambridge: exim/doc/doc-txt/NewStuff,v 1.45 2005/05/23 16:58:55 fanf2 Exp $ +$Cambridge: exim/doc/doc-txt/NewStuff,v 1.46 2005/05/25 09:58:16 fanf2 Exp $ New Features in Exim -------------------- @@ -132,8 +132,8 @@ TF/04 There is a new ratelimit ACL condition which can be used to measure ratelimit = <m> / <p> / <options> / <key> - If the average client sending rate is greater than m messages per time - period p then the condition is true, otherwise it is false. + If the average client sending rate is less than m messages per time + period p then the condition is false, otherwise it is true. The parameter p is the smoothing time constant, in the form of an Exim time interval e.g. 8h for eight hours. A larger time constant means it |