diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-11-28 16:04:21 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-11-28 16:04:21 +0800 |
commit | 4f015ce67a104d6c9476356394dc78443d6eb06f (patch) | |
tree | 8ef3944a1976292328190033b7d88b0f55b63de0 /calendar/gui/itip-utils.c | |
parent | a75b727efee43acf8e4975b264a85ea743529526 (diff) | |
download | gsoc2013-evolution-4f015ce67a104d6c9476356394dc78443d6eb06f.tar.gz gsoc2013-evolution-4f015ce67a104d6c9476356394dc78443d6eb06f.tar.zst gsoc2013-evolution-4f015ce67a104d6c9476356394dc78443d6eb06f.zip |
Fix for bug #561467 - some changes in the core code needed for evolution-mapi.
svn path=/trunk/; revision=36818
Diffstat (limited to 'calendar/gui/itip-utils.c')
-rw-r--r-- | calendar/gui/itip-utils.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index 5a954b5ff9..5b292e1901 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -1147,7 +1147,7 @@ itip_send_comp (ECalComponentItipMethod method, ECalComponent *send_comp, gchar *subject = NULL; gboolean retval = FALSE; - /* check whether backend could handle sending requests/updates */ + /* check whether backend could handle auto-saving requests/updates */ if (method != E_CAL_COMPONENT_METHOD_PUBLISH && e_cal_get_save_schedules (client)) return TRUE; @@ -1157,6 +1157,15 @@ itip_send_comp (ECalComponentItipMethod method, ECalComponent *send_comp, goto cleanup; } + /* check whether backend could handle sending requests/updates */ + if (method != E_CAL_COMPONENT_METHOD_PUBLISH && e_cal_get_static_capability (client, CAL_STATIC_CAPABILITY_CREATE_MESSAGES)) { + if (users) { + g_list_foreach (users, (GFunc) g_free, NULL); + g_list_free (users); + } + return TRUE; + } + /* Tidy up the comp */ comp = comp_compliant (method, send_comp, client, zones); |