diff options
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-session.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 1e0a3f46dd..e80c32700d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,10 @@ 2003-01-10 Jeffrey Stedfast <fejj@ximian.com> + * mail-session.c (main_get_filter_driver): notify-type is a int, + not a bool. Duh. + +2003-01-10 Jeffrey Stedfast <fejj@ximian.com> + * component-factory.c (factory): Updated for function rename. * mail-config-factory.c (mail_config_control_factory_cb): diff --git a/mail/mail-session.c b/mail/mail-session.c index 05375d992f..8bc1f89ef3 100644 --- a/mail/mail-session.c +++ b/mail/mail-session.c @@ -796,7 +796,7 @@ main_get_filter_driver (CamelSession *session, const char *type, CamelException /* FIXME: we need a way to distinguish between filtering new mail and re-filtering a folder because both use the "incoming" filter type */ - notify = gconf_client_get_bool (gconf, "/apps/evolution/mail/notify/type", NULL); + notify = gconf_client_get_int (gconf, "/apps/evolution/mail/notify/type", NULL); if (notify != MAIL_CONFIG_NOTIFY_NOT && !strcmp (type, "incoming")) { char *filename; |