aboutsummaryrefslogtreecommitdiffstats
path: root/pop2.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2006-11-12 22:13:38 +0000
committerMatthias Andree <matthias.andree@gmx.de>2006-11-12 22:13:38 +0000
commit3b4f5154753b18d70188dd373e8ca7818826ceee (patch)
treecd22452c8a222d0a22d1847e8b3d1aaaa6790561 /pop2.c
parent6027c36811efb25cb1ed70ba87dadec59d082cda (diff)
downloadfetchmail-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pop2.c b/pop2.c
index 8bfefb4c..fe00cd6c 100644
--- a/pop2.c
+++ b/pop2.c
@@ -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));