]> diplodocus.org Git - nmh/commitdiff
Change the default for noverify
authorKen Hornstein <kenh@pobox.com>
Mon, 30 Sep 2019 22:23:51 +0000 (18:23 -0400)
committerKen Hornstein <kenh@pobox.com>
Mon, 30 Sep 2019 22:24:35 +0000 (18:24 -0400)
The default for 'noverify' should be 'false'.  The certificate chain
SHOULD be verified by default.

uip/inc.c

index c34d28ae9fd1c121d04ecf5aff3631c15e40987f..1d8e94f35aae5e86dd4d332816a171efdd458504 100644 (file)
--- 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)) {