From be26eff5d9458a6bf5a43a60e0b1c8331c7812c3 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Sat, 10 Dec 2011 07:05:33 +0000 Subject: [PATCH] NODELAY for mail! SVN revision: 66074 --- src/imap.c | 2 +- src/imap2.c | 2 +- src/pop.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/imap.c b/src/imap.c index bcaf686..7379d8c 100644 --- a/src/imap.c +++ b/src/imap.c @@ -53,7 +53,7 @@ _mail_imap_check_mail (void *data) if (is->local) type = ECORE_CON_LOCAL_SYSTEM; else - type = ECORE_CON_REMOTE_SYSTEM; + type = ECORE_CON_REMOTE_NODELAY; if (ecore_con_ssl_available_get () && (is->ssl)) { diff --git a/src/imap2.c b/src/imap2.c index 86c0636..a51e109 100644 --- a/src/imap2.c +++ b/src/imap2.c @@ -59,7 +59,7 @@ _mail_imap_check_mail (void *data) if (ic->config->local) type = ECORE_CON_LOCAL_SYSTEM; else - type = ECORE_CON_REMOTE_SYSTEM; + type = ECORE_CON_REMOTE_NODELAY; if (ecore_con_ssl_available_get () && (ic->config->ssl)) { diff --git a/src/pop.c b/src/pop.c index c609cfa..7cd9197 100644 --- a/src/pop.c +++ b/src/pop.c @@ -14,7 +14,7 @@ static Eina_List *pclients; void _mail_pop_check_mail (void *data) { - Ecore_Con_Type type = ECORE_CON_REMOTE_SYSTEM; + Ecore_Con_Type type = ECORE_CON_REMOTE_NODELAY; Eina_List *l; Instance *inst;