From 23017711eb711dc8e9296b4ed7a5a24d193fe6f2 Mon Sep 17 00:00:00 2001 From: Radek Doulik Date: Thu, 4 Dec 2003 14:11:20 +0000 Subject: check recent messages for junk mail 2003-12-04 Radek Doulik * camel-folder.c (folder_changed): check recent messages for junk mail * camel-session.c (camel_session_check_junk): new wrapper method for check_junk flag (camel_session_set_check_junk): ditto * camel-session.h (struct _CamelSession): added check_junk flag (if to check incoming mail for junk messages) svn path=/trunk/; revision=23629 --- camel/camel-session.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'camel/camel-session.c') diff --git a/camel/camel-session.c b/camel/camel-session.c index 07c6801824..fc31530768 100644 --- a/camel/camel-session.c +++ b/camel/camel-session.c @@ -870,3 +870,32 @@ void camel_session_thread_wait(CamelSession *session, int id) CS_CLASS (session)->thread_wait(session, id); } + +/** + * camel_session_check_junk: + * @session: + * + * Do we have to check incoming messages to be junk? + **/ +gboolean +camel_session_check_junk (CamelSession *session) +{ + g_assert(CAMEL_IS_SESSION(session)); + + return session->check_junk; +} + +/** + * camel_session_set_check_junk: + * @session: + * @check_junk: + * + * Set check_junk flag, if set, incoming mail will be checked for being junk. + **/ +void +camel_session_set_check_junk (CamelSession *session, gboolean check_junk) +{ + g_assert(CAMEL_IS_SESSION(session)); + + session->check_junk = check_junk; +} -- cgit v1.2.3