try mixed proto

SVN revision: 52631
This commit is contained in:
Mike Blumenkrantz 2010-09-23 09:10:05 +00:00
parent a2293fc949
commit 61f87516e7
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ _mail_imap_check_mail (void *data)
switch (ic->config->ssl)
{
case 3:
type |= ECORE_CON_USE_SSL3;
type |= ECORE_CON_USE_MIXED;
break;
case 2:
default:

View File

@ -46,7 +46,7 @@ _mail_pop_check_mail (void *data)
_mail_pop_server_data, NULL);
if ((ecore_con_ssl_available_get ()) && (pc->config->ssl))
type |= ECORE_CON_USE_SSL;
type |= ECORE_CON_USE_MIXED;
pc->server =
ecore_con_server_connect (type, pc->config->host,
pc->config->port, pc);