summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/smtpd.h
diff options
context:
space:
mode:
authorEric Faurot <eric@cvs.openbsd.org>2018-06-01 12:24:17 +0000
committerEric Faurot <eric@cvs.openbsd.org>2018-06-01 12:24:17 +0000
commit680f59a0a039eed2f0ff860a9e08e77c8ffe03f2 (patch)
tree7aae0457d9ddd12bc3105757f9d2d2b60eb66310 /usr.sbin/smtpd/smtpd.h
parentef08d193eef90afe1e39cd9cdf6de6ca84a01fed (diff)
Require a valid certificate by default when relaying through a smarthost.
Add "tls no-verify" relay option to disable it. suggested and initial diff by semarie@. ok gilles@
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r--usr.sbin/smtpd/smtpd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h
index cfaaeb74491..c410733ba11 100644
--- a/usr.sbin/smtpd/smtpd.h
+++ b/usr.sbin/smtpd/smtpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: smtpd.h,v 1.546 2018/05/31 21:06:12 gilles Exp $ */
+/* $OpenBSD: smtpd.h,v 1.547 2018/06/01 12:24:16 eric Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -1068,6 +1068,7 @@ struct dispatcher_remote {
char *smarthost;
char *auth;
+ int tls_noverify;
int backup;
char *backupmx;