summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreric <eric@openbsd.org>2018-11-16 20:55:59 +0000
committereric <eric@openbsd.org>2018-11-16 20:55:59 +0000
commita055df58b5221b971143c2aeefe770e200378d29 (patch)
tree7ed5d34d41fb23e3da4327236234a3f443dd0985
parentwhen using smtps, tls initialisation must occur after FILTER_CONNECTED (diff)
downloadwireguard-openbsd-a055df58b5221b971143c2aeefe770e200378d29.tar.xz
wireguard-openbsd-a055df58b5221b971143c2aeefe770e200378d29.zip
add missing imsg names
-rw-r--r--usr.sbin/smtpd/smtpd.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.c b/usr.sbin/smtpd/smtpd.c
index 18287e0703d..061f49bdc77 100644
--- a/usr.sbin/smtpd/smtpd.c
+++ b/usr.sbin/smtpd/smtpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: smtpd.c,v 1.305 2018/11/03 08:59:54 gilles Exp $ */
+/* $OpenBSD: smtpd.c,v 1.306 2018/11/16 20:55:59 eric Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -1950,6 +1950,8 @@ imsg_to_str(int type)
CASE(IMSG_MDA_KILL);
CASE(IMSG_MDA_OPEN_MESSAGE);
+ CASE(IMSG_MFA_SMTP_RESPONSE);
+
CASE(IMSG_MTA_DELIVERY_OK);
CASE(IMSG_MTA_DELIVERY_TEMPFAIL);
CASE(IMSG_MTA_DELIVERY_PERMFAIL);
@@ -2004,6 +2006,20 @@ imsg_to_str(int type)
CASE(IMSG_LKA_PROCESSOR_FORK);
+ CASE(IMSG_SMTP_REPORT_LINK_CONNECT);
+ CASE(IMSG_SMTP_REPORT_LINK_DISCONNECT);
+ CASE(IMSG_SMTP_REPORT_LINK_TLS);
+
+ CASE(IMSG_SMTP_REPORT_TX_BEGIN);
+ CASE(IMSG_SMTP_REPORT_TX_ENVELOPE);
+ CASE(IMSG_SMTP_REPORT_TX_COMMIT);
+ CASE(IMSG_SMTP_REPORT_TX_ROLLBACK);
+
+ CASE(IMSG_SMTP_REPORT_PROTOCOL_CLIENT);
+ CASE(IMSG_SMTP_REPORT_PROTOCOL_SERVER);
+
+ CASE(IMSG_SMTP_FILTER);
+
CASE(IMSG_CA_PRIVENC);
CASE(IMSG_CA_PRIVDEC);
default: