aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd
diff options
context:
space:
mode:
authorgilles <gilles@openbsd.org>2011-08-27 22:32:41 +0000
committergilles <gilles@openbsd.org>2011-08-27 22:32:41 +0000
commitfc24415b9a4ef4ea34f1406f7b37c19a1aa22cd7 (patch)
treea67f08a4a7bfcd97b43b15511edb9ae39776c2d3 /smtpd
parentadd missing header needed by time() (diff)
downloadOpenSMTPD-fc24415b9a4ef4ea34f1406f7b37c19a1aa22cd7.tar.xz
OpenSMTPD-fc24415b9a4ef4ea34f1406f7b37c19a1aa22cd7.zip
initial support for a session-time filtering API
currently only HELO/EHLO, MAIL, RCPT are supported, however ... I have voluntarily disabled filters at smtpd.conf level so people don't play with it until the API has stabilized a bit discussed with several people in private, no one opposed the feature
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 758e3c00..0c4fab21 100644
--- a/smtpd/Makefile
+++ b/smtpd/Makefile
@@ -1,11 +1,11 @@
-# $OpenBSD: Makefile,v 1.28 2011/05/21 18:43:08 gilles Exp $
+# $OpenBSD: Makefile,v 1.29 2011/08/27 22:32:42 gilles Exp $
PROG= smtpd
SRCS= aliases.c auth_backend.c bounce.c client.c \
config.c control.c dns.c expand.c forward.c \
lka.c lka_session.c log.c map.c map_backend.c \
map_backend_db.c map_backend_stdio.c \
- mda.c mfa.c mta.c parse.y \
+ mda.c mfa.c mfa_session.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 \