aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/itip-utils.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-10-16 03:02:42 +0800
committerMilan Crha <mcrha@redhat.com>2009-10-16 03:02:42 +0800
commitf74a1448947259f52293ba922b64b2b3b8ff726c (patch)
treea85e893277db5a7564ba2857f87b8f256227f06d /calendar/gui/itip-utils.c
parent3766e19a2aafccaae1f662bc8770f074fdcc4a2d (diff)
downloadgsoc2013-evolution-f74a1448947259f52293ba922b64b2b3b8ff726c.tar
gsoc2013-evolution-f74a1448947259f52293ba922b64b2b3b8ff726c.tar.gz
gsoc2013-evolution-f74a1448947259f52293ba922b64b2b3b8ff726c.tar.bz2
gsoc2013-evolution-f74a1448947259f52293ba922b64b2b3b8ff726c.tar.lz
gsoc2013-evolution-f74a1448947259f52293ba922b64b2b3b8ff726c.tar.xz
gsoc2013-evolution-f74a1448947259f52293ba922b64b2b3b8ff726c.tar.zst
gsoc2013-evolution-f74a1448947259f52293ba922b64b2b3b8ff726c.zip
Bug #322261 - vCalendar replies are sent out using the default account
Diffstat (limited to 'calendar/gui/itip-utils.c')
-rw-r--r--calendar/gui/itip-utils.c37
1 files changed, 25 insertions, 12 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c
index e9f7bb2d82..2f34d33663 100644
--- a/calendar/gui/itip-utils.c
+++ b/calendar/gui/itip-utils.c
@@ -1205,6 +1205,29 @@ append_cal_attachments (EMsgComposer *composer,
g_slist_free (attach_list);
}
+static void
+setup_from (ECalComponentItipMethod method, ECalComponent *comp, EComposerHeaderTable *table)
+{
+ EAccountList *accounts;
+
+ accounts = e_composer_header_table_get_account_list (table);
+ if (accounts) {
+ EAccount *account = NULL;
+
+ if (!account) {
+ gchar *from = comp_from (method, comp);
+
+ if (from)
+ account = (EAccount *) e_account_list_find (accounts, E_ACCOUNT_FIND_ID_ADDRESS, from);
+
+ g_free (from);
+ }
+
+ if (account)
+ e_composer_header_table_set_account (table, account);
+ }
+}
+
gboolean
itip_send_comp (ECalComponentItipMethod method, ECalComponent *send_comp,
ECal *client, icalcomponent *zones, GSList *attachments_list, GList *users,
@@ -1216,7 +1239,6 @@ itip_send_comp (ECalComponentItipMethod method, ECalComponent *send_comp,
ECalComponent *comp = NULL;
icalcomponent *top_level = NULL;
gchar *ical_string = NULL;
- gchar *from = NULL;
gchar *content_type = NULL;
gchar *subject = NULL;
gboolean retval = FALSE;
@@ -1259,14 +1281,11 @@ itip_send_comp (ECalComponentItipMethod method, ECalComponent *send_comp,
/* Subject information */
subject = comp_subject (method, comp);
- /* From address */
- from = comp_from (method, comp);
-
composer = e_msg_composer_new ();
table = e_msg_composer_get_header_table (composer);
+ setup_from (method, send_comp, table);
e_composer_header_table_set_subject (table, subject);
- e_composer_header_table_set_account_name (table, from);
e_composer_header_table_set_destinations_to (table, destinations);
e_destination_freev (destinations);
@@ -1328,7 +1347,6 @@ itip_send_comp (ECalComponentItipMethod method, ECalComponent *send_comp,
g_list_free (users);
}
- g_free (from);
g_free (content_type);
g_free (subject);
g_free (ical_string);
@@ -1350,7 +1368,6 @@ reply_to_calendar_comp (ECalComponentItipMethod method,
ECalComponent *comp = NULL;
icalcomponent *top_level = NULL;
GList *users = NULL;
- gchar *from = NULL;
gchar *subject = NULL;
gchar *ical_string = NULL;
gboolean retval = FALSE;
@@ -1366,14 +1383,11 @@ reply_to_calendar_comp (ECalComponentItipMethod method,
/* Subject information */
subject = comp_subject (method, comp);
- /* From address */
- from = comp_from (method, comp);
-
composer = e_msg_composer_new ();
table = e_msg_composer_get_header_table (composer);
+ setup_from (method, send_comp, table);
e_composer_header_table_set_subject (table, subject);
- e_composer_header_table_set_account_name (table, from);
e_composer_header_table_set_destinations_to (table, destinations);
e_destination_freev (destinations);
@@ -1488,7 +1502,6 @@ reply_to_calendar_comp (ECalComponentItipMethod method,
g_list_free (users);
}
- g_free (from);
g_free (subject);
g_free (ical_string);
return retval;