.RB [ \-user
.IR username ]
.RB [ \-tls ]
+.RB [ \-notls ]
.I file
.RB [ \-version ]
.RB [ \-help ]
.B nmh
has been compiled with TLS support, the
.B \-tls
-switch will require the negotiation of TLS support when connecting to the
+and
+.B \-notls
+switches will require and disable the negotiation of TLS support when
+connecting to the
SMTP MTA. Encrypted data is labelled with `(tls-encrypted)' and
`(tls-decrypted)' when viewing the SMTP transction with the
.B \-snoop
.RB [ \-user
.IR username ]
.RB [ \-tls ]
+.RB [ \-notls ]
.RB [ \-width
.IR columns ]
.RB [ file
.B nmh
has been compiled with TLS support, the
.B \-tls
-switch will require the negotiation of TLS support when connecting to the
+and
+.B \-notls
+switches will require and disable the negotiation of TLS support when connecting to the
SMTP MTA. Encrypted data is labelled with `(tls-encrypted)' and
`(tls-decrypted)' when viewing the SMTP transction with the
.B \-snoop
{ "port server port name/number", 4 },
#define TLSSW 36
{ "tls", TLSminc(-3) },
-#define FILEPROCSW 37
+#define NTLSSW 37
+ { "notls", TLSminc(-5) },
+#define FILEPROCSW 38
{ "fileproc", -4 },
-#define MHLPROCSW 38
+#define MHLPROCSW 39
{ "mhlproc", -3 },
{ NULL, 0 }
};
tls++;
continue;
+ case NTLSSW:
+ tls = 0;
+ continue;
+
case FILEPROCSW:
if (!(cp = *argp++) || *cp == '-')
adios (NULL, "missing argument to %s", argp[-2]);
{ "port server-port-name/number" , 4 },
#define TLSSW 45
{ "tls", TLSminc(-3) },
+#define NTLSSW 46
+ { "notls", TLSminc(-5) },
{ NULL, 0 }
};
case SASLSW:
case NOSASLSW:
case TLSSW:
+ case NTLSSW:
vec[vecp++] = --cp;
continue;
{ "port server-port-name/number", 4 },
#define TLSSW 44
{ "tls", TLSminc(-3) },
+#define NTLSSW 45
+ { "notls", TLSminc(-5) },
{ NULL, 0 }
};
case SASLSW:
case NOSASLSW:
case TLSSW:
+ case NTLSSW:
vec[vecp++] = --cp;
continue;
{ "port server port name/number", 4 },
#define TLSSW 16
{ "tls", TLSminc(-3) },
+#define NTLSSW 17
+ { "notls", TLSminc(-5) },
{ NULL, 0 }
};
case SNOOPSW:
case SASLSW:
case TLSSW:
+ case NTLSSW:
vec[vecp++] = --cp;
continue;