diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2018-05-14 15:23:06 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2018-05-14 15:23:06 +0000 |
commit | 17e3f4c1d162c431b3c19d17d8b6531ea628cf63 (patch) | |
tree | 2f19adef7433d4f3975f60cdd866c218a57c27d3 /usr.sbin/smtpd/control.c | |
parent | 97f646171ea73ca129c99b29ee399d4c7d8ae8af (diff) |
kill corrupt / uncorrupt queue mechanism as it has never been usable and it
will be made irrelevant when the new config comes up soon
ok eric@
Diffstat (limited to 'usr.sbin/smtpd/control.c')
-rw-r--r-- | usr.sbin/smtpd/control.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/control.c b/usr.sbin/smtpd/control.c index d3e5b693680..172dffbe840 100644 --- a/usr.sbin/smtpd/control.c +++ b/usr.sbin/smtpd/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.121 2018/01/27 08:32:03 anton Exp $ */ +/* $OpenBSD: control.c,v 1.122 2018/05/14 15:23:05 gilles Exp $ */ /* * Copyright (c) 2012 Gilles Chehade <gilles@poolp.org> @@ -101,7 +101,6 @@ control_imsg(struct mproc *p, struct imsg *imsg) case IMSG_CTL_LIST_ENVELOPES: case IMSG_CTL_DISCOVER_EVPID: case IMSG_CTL_DISCOVER_MSGID: - case IMSG_CTL_UNCORRUPT_MSGID: case IMSG_CTL_MTA_SHOW_HOSTS: case IMSG_CTL_MTA_SHOW_RELAYS: case IMSG_CTL_MTA_SHOW_ROUTES: @@ -751,7 +750,6 @@ control_dispatch_ext(struct mproc *p, struct imsg *imsg) return; case IMSG_CTL_DISCOVER_MSGID: - case IMSG_CTL_UNCORRUPT_MSGID: if (c->euid) goto badcred; |