diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-01-14 23:35:35 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-01-14 23:35:35 +0000 |
commit | 2f85e475d4a1606bb2b9f140d520bb6ac84bbbb5 (patch) | |
tree | 2c0d71ce60a553bd05b9b2f73096f689bd829a5c /options.c | |
parent | 1b287047ba9c5516da12b660b3668e30764b4f5c (diff) | |
download | fetchmail-2f85e475d4a1606bb2b9f140d520bb6ac84bbbb5.tar.gz fetchmail-2f85e475d4a1606bb2b9f140d520bb6ac84bbbb5.tar.bz2 fetchmail-2f85e475d4a1606bb2b9f140d520bb6ac84bbbb5.zip |
Added missing --help text for "--sslcertck" option.
svn path=/branches/BRANCH_6-3/; revision=4635
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -596,6 +596,7 @@ struct query *ctl; /* option record to be initialized */ P(GT_(" --ssl enable ssl encrypted session\n")); P(GT_(" --sslkey ssl private key file\n")); P(GT_(" --sslcert ssl client certificate\n")); + P(GT_(" --sslcertck strict client certificate check (recommended)\n")); P(GT_(" --sslcertpath path to ssl certificates\n")); P(GT_(" --sslfingerprint fingerprint that must match that of the server's cert.\n")); P(GT_(" --sslproto force ssl protocol (ssl2/ssl3/tls1)\n")); @@ -640,6 +641,10 @@ struct query *ctl; /* option record to be initialized */ P(GT_(" -r, --folder specify remote folder name\n")); P(GT_(" --showdots show progress dots even in logfiles\n")); #undef P + /* undocumented: + * --configdump (internal use by fetchmailconf, dumps + * configuration as Python source code) + * --yydebug (developer use, enables parser debugging) */ if (helpflag) exit(PS_SUCCESS); |