From: Ken Hornstein Date: Mon, 30 Sep 2019 22:23:51 +0000 (-0400) Subject: Change the default for noverify X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/b60e6973e9185bd4f8332d7a19d3fa59f0e618ad?ds=sidebyside;hp=1c03fa9d8e85b15167dce2d7007132fe87698bc8 Change the default for noverify The default for 'noverify' should be 'false'. The certificate chain SHOULD be verified by default. --- diff --git a/uip/inc.c b/uip/inc.c index c34d28ae..1d8e94f3 100644 --- a/uip/inc.c +++ b/uip/inc.c @@ -253,8 +253,8 @@ main (int argc, char **argv) if (pophost && *pophost) host = pophost; - sasl = false; - chgflag = noisy = noverify = true; + sasl = noverify = false; + chgflag = noisy = true; while ((cp = *argp++)) { if (*cp == '-') { switch (smatch (++cp, switches)) {