aboutsummaryrefslogtreecommitdiffstats
path: root/libemail-engine
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-02-27 21:03:22 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-02-27 23:59:55 +0800
commit0b2607486ee7207d524ba6edc3dc375e518ef427 (patch)
tree63fe21da5e0cfee40588963817bda177cc2974d6 /libemail-engine
parentef355cd5c3380b057d69bd839f67dc82a666ad9a (diff)
downloadgsoc2013-evolution-0b2607486ee7207d524ba6edc3dc375e518ef427.tar
gsoc2013-evolution-0b2607486ee7207d524ba6edc3dc375e518ef427.tar.gz
gsoc2013-evolution-0b2607486ee7207d524ba6edc3dc375e518ef427.tar.bz2
gsoc2013-evolution-0b2607486ee7207d524ba6edc3dc375e518ef427.tar.lz
gsoc2013-evolution-0b2607486ee7207d524ba6edc3dc375e518ef427.tar.xz
gsoc2013-evolution-0b2607486ee7207d524ba6edc3dc375e518ef427.tar.zst
gsoc2013-evolution-0b2607486ee7207d524ba6edc3dc375e518ef427.zip
Move CamelSession.lookup_addressbook() handler to EMailUISession.
Have the new handler call e_mail_ui_session_check_known_address_sync() instead of em_utils_in_addressbook().
Diffstat (limited to 'libemail-engine')
-rw-r--r--libemail-engine/e-mail-session.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/libemail-engine/e-mail-session.c b/libemail-engine/e-mail-session.c
index 4d34b6f922..8d852edb82 100644
--- a/libemail-engine/e-mail-session.c
+++ b/libemail-engine/e-mail-session.c
@@ -1515,28 +1515,6 @@ mail_session_get_filter_driver (CamelSession *session,
session, type, error);
}
-static gboolean
-mail_session_lookup_addressbook (CamelSession *session,
- const gchar *name)
-{
- ESourceRegistry *registry;
- CamelInternetAddress *addr;
- gboolean ret;
-
- if (!mail_config_get_lookup_book ())
- return FALSE;
-
- registry = e_mail_session_get_registry (E_MAIL_SESSION (session));
-
- addr = camel_internet_address_new ();
- camel_address_decode ((CamelAddress *) addr, name);
- ret = em_utils_in_addressbook (
- registry, addr, mail_config_get_lookup_book_local_only (), NULL);
- g_object_unref (addr);
-
- return ret;
-}
-
static void
mail_session_get_socks_proxy (CamelSession *session,
const gchar *for_host,
@@ -1873,7 +1851,6 @@ e_mail_session_class_init (EMailSessionClass *class)
session_class->alert_user = mail_session_alert_user;
session_class->trust_prompt = mail_session_trust_prompt;
session_class->get_filter_driver = mail_session_get_filter_driver;
- session_class->lookup_addressbook = mail_session_lookup_addressbook;
session_class->get_socks_proxy = mail_session_get_socks_proxy;
session_class->authenticate_sync = mail_session_authenticate_sync;
session_class->forward_to_sync = mail_session_forward_to_sync;