diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-11-12 22:13:38 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-11-12 22:13:38 +0000 |
commit | 3b4f5154753b18d70188dd373e8ca7818826ceee (patch) | |
tree | cd22452c8a222d0a22d1847e8b3d1aaaa6790561 /pop2.c | |
parent | 6027c36811efb25cb1ed70ba87dadec59d082cda (diff) | |
download | fetchmail-3b4f5154753b18d70188dd373e8ca7818826ceee.tar.gz fetchmail-3b4f5154753b18d70188dd373e8ca7818826ceee.tar.bz2 fetchmail-3b4f5154753b18d70188dd373e8ca7818826ceee.zip |
Fix TLS issue: fail if sslfingerprint, sslproto tls1 or sslcertck are configured and STARTTLS fails. Only by omitting all of these options, fetchmail will try opportunistic TLS.
svn path=/branches/BRANCH_6-3/; revision=4929
Diffstat (limited to 'pop2.c')
-rw-r--r-- | pop2.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ static int pop2_getauth(int sock, struct query *ctl, char *buf) (void)buf; if (ctl->sslproto && !strcasecmp(ctl->sslproto, "tls1") && !ctl->use_ssl) { - report(stderr, GT_("POP2 does not support STARTTLS. Giving up.\n")); + report(stderr, GT_("POP2 does not support STLS. Giving up.\n")); return PS_SOCKET; } strlcpy(shroud, ctl->password, sizeof(shroud)); |