From e656e749f05ed92c2d5ff73cd2da9e39f05ae1a0 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Mon, 15 Aug 2011 10:18:30 -0400 Subject: EMailSession: Configure settings when adding services. Override CamelSession.add_service(). First chain up, then, if initialization was successful, call camel_settings_load_from_url() on the CamelSettings object in the new CamelService instance. Note that eventually we'll load CamelSettings values from a key file instead of from URL parameters. This is just a temporary measure. --- mail/e-mail-session.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'mail') diff --git a/mail/e-mail-session.c b/mail/e-mail-session.c index 8a3072447a..6c96eca4be 100644 --- a/mail/e-mail-session.c +++ b/mail/e-mail-session.c @@ -782,6 +782,34 @@ mail_session_constructed (GObject *object) object, "junk-filter-name"); } +static CamelService * +mail_session_add_service (CamelSession *session, + const gchar *uid, + const gchar *url_string, + CamelProviderType type, + GError **error) +{ + CamelService *service; + + /* Chain up to parents add_service() method. */ + service = CAMEL_SESSION_CLASS (e_mail_session_parent_class)-> + add_service (session, uid, url_string, type, error); + + /* Initialize the CamelSettings object from CamelURL parameters. + * This is temporary; soon we'll read settings from key files. */ + + if (CAMEL_IS_SERVICE (service)) { + CamelSettings *settings; + CamelURL *url; + + settings = camel_service_get_settings (service); + url = camel_service_get_camel_url (service); + camel_settings_load_from_url (settings, url); + } + + return service; +} + static gchar * mail_session_get_password (CamelSession *session, CamelService *service, @@ -1112,6 +1140,7 @@ e_mail_session_class_init (EMailSessionClass *class) object_class->constructed = mail_session_constructed; session_class = CAMEL_SESSION_CLASS (class); + session_class->add_service = mail_session_add_service; session_class->get_password = mail_session_get_password; session_class->forget_password = mail_session_forget_password; session_class->alert_user = mail_session_alert_user; -- cgit v1.2.3