aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd
diff options
context:
space:
mode:
authorgilles <gilles@openbsd.org>2011-04-13 20:53:18 +0000
committergilles <gilles@openbsd.org>2011-04-13 20:53:18 +0000
commit490750881de3bed67aeaf5a7a65ecc1ec492adc6 (patch)
tree0f4a162a4d433b559fe6cdfedf36cf6c2beb1863 /smtpd
parentadd stat counters for the lookup agent (diff)
downloadOpenSMTPD-490750881de3bed67aeaf5a7a65ecc1ec492adc6.tar.xz
OpenSMTPD-490750881de3bed67aeaf5a7a65ecc1ec492adc6.zip
following an idea from jacekm@, smtpd now uses a ram-queue instead of doing
a continuous walk on the disk-queue. the implementation differs from what jacekm@ commited (and I backed out) a while ago in that it uses a queue and a host tree required for upcoming features. code will be improved in tree, it requires changes to be done in queue and bounce API, I just wanted to commit a working version first ... tested by todd@ and I
Diffstat (limited to 'smtpd')
-rw-r--r--smtpd/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/smtpd/Makefile b/smtpd/Makefile
index e78cef43..b244726c 100644
--- a/smtpd/Makefile
+++ b/smtpd/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.22 2010/11/29 15:25:56 gilles Exp $
+# $OpenBSD: Makefile,v 1.23 2011/04/13 20:53:18 gilles Exp $
PROG= smtpd
SRCS= aliases.c authenticate.c bounce.c client.c \
@@ -7,7 +7,7 @@ SRCS= aliases.c authenticate.c bounce.c client.c \
mfa.c mta.c parse.y queue.c queue_shared.c ruleset.c \
runner.c smtp.c smtp_session.c smtpd.c ssl.c \
ssl_privsep.c util.c asr.c print.c pack.c dname.c \
- res_random.c sockaddr.c
+ res_random.c sockaddr.c ramqueue.c
MAN= smtpd.8 smtpd.conf.5
BINDIR= /usr/sbin