diff options
author | 2015-12-01 09:44:54 +0000 | |
---|---|---|
committer | 2015-12-01 09:44:54 +0000 | |
commit | a7b391f8b1b9f93b1292c5f45a09bd4784430200 (patch) | |
tree | a1e02368a1852fd66fdc34f93066c7b2ee95d228 | |
parent | Do not deref wp if window_get_active_at returns NULL which can happen on (diff) | |
download | wireguard-openbsd-a7b391f8b1b9f93b1292c5f45a09bd4784430200.tar.xz wireguard-openbsd-a7b391f8b1b9f93b1292c5f45a09bd4784430200.zip |
add IMSG_SMTP_CHECK_SENDER in list of smtp IMSG
-rw-r--r-- | usr.sbin/smtpd/pony.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/pony.c b/usr.sbin/smtpd/pony.c index b25aed8d912..3c3d2784e47 100644 --- a/usr.sbin/smtpd/pony.c +++ b/usr.sbin/smtpd/pony.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pony.c,v 1.9 2015/11/30 12:49:35 gilles Exp $ */ +/* $OpenBSD: pony.c,v 1.10 2015/12/01 09:44:54 gilles Exp $ */ /* * Copyright (c) 2014 Gilles Chehade <gilles@poolp.org> @@ -74,6 +74,7 @@ pony_imsg(struct mproc *p, struct imsg *imsg) /* smtp imsg */ case IMSG_SMTP_DNS_PTR: + case IMSG_SMTP_CHECK_SENDER: case IMSG_SMTP_EXPAND_RCPT: case IMSG_SMTP_LOOKUP_HELO: case IMSG_SMTP_AUTHENTICATE: |