diff options
author | Tony Finch <dot@dotat.at> | 2011-06-13 21:48:24 +0100 |
---|---|---|
committer | Tony Finch <dot@dotat.at> | 2011-06-17 16:53:05 +0100 |
commit | c99ce5c9a3ff397497892a741079be2edf385de2 (patch) | |
tree | ff83bc7b9fc75a4555e5ae7560e5af5d08032eba /src/OS | |
parent | 921b12ca0c361b9c543368edf057712afa02ca14 (diff) |
Improved ratelimit ACL condition.
Replace /noupdate with simpler /readonly option. (/noupdate is
supported for backwards compatibility but no longer documented.)
Better checking of the compatibility between per_* options and the
ACL in which the ratelimit condition appears.
Better handling of the start of a burst of email and of very low-rate
clients.
The new /count= option generalizes the per_byte and per_rcpt options.
The new /unique= option is a rather groovy use for a Bloom filter.
Diffstat (limited to 'src/OS')
-rw-r--r-- | src/OS/Makefile-Base | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OS/Makefile-Base b/src/OS/Makefile-Base index 29a6ad371..474ab8a85 100644 --- a/src/OS/Makefile-Base +++ b/src/OS/Makefile-Base @@ -361,10 +361,10 @@ exim_dumpdb: $(OBJ_DUMPDB) OBJ_FIXDB = exim_fixdb.o util-os.o util-store.o -exim_fixdb: $(OBJ_FIXDB) +exim_fixdb: $(OBJ_FIXDB) auths/auths.a @echo "$(LNCC) -o exim_fixdb" $(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_fixdb $(LFLAGS) $(OBJ_FIXDB) \ - $(LIBS) $(EXTRALIBS) $(DBMLIB) + auths/auths.a $(LIBS) $(EXTRALIBS) $(DBMLIB) @if [ x"$(STRIP_COMMAND)" != x"" ]; then \ echo $(STRIP_COMMAND) exim_fixdb; \ $(STRIP_COMMAND) exim_fixdb; \ |