aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mail-to-meeting
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mail-to-meeting')
-rw-r--r--plugins/mail-to-meeting/ChangeLog6
-rw-r--r--plugins/mail-to-meeting/mail-to-meeting.c4
2 files changed, 9 insertions, 1 deletions
diff --git a/plugins/mail-to-meeting/ChangeLog b/plugins/mail-to-meeting/ChangeLog
index 31fbc638a8..b30a1eac71 100644
--- a/plugins/mail-to-meeting/ChangeLog
+++ b/plugins/mail-to-meeting/ChangeLog
@@ -1,3 +1,9 @@
+2009-03-26 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #576696
+
+ * mail-to-meeting.c: (add_attendee_cb): Set mandatory properties.
+
2009-01-21 Milan Crha <mcrha@redhat.com>
* Makefile.am: Use also EVOLUTION_CALENDAR_CFLAGS.
diff --git a/plugins/mail-to-meeting/mail-to-meeting.c b/plugins/mail-to-meeting/mail-to-meeting.c
index b5702cdb6c..a23d4d7d4a 100644
--- a/plugins/mail-to-meeting/mail-to-meeting.c
+++ b/plugins/mail-to-meeting/mail-to-meeting.c
@@ -49,7 +49,9 @@ add_attendee_cb (gpointer key, gpointer value, gpointer user_data)
ca = g_new0 (ECalComponentAttendee, 1);
ca->value = str;
ca->cn = name;
- /* FIXME: missing many fields */
+ ca->cutype = ICAL_CUTYPE_INDIVIDUAL;
+ ca->status = ICAL_PARTSTAT_NEEDSACTION;
+ ca->role = ICAL_ROLE_REQPARTICIPANT;
/* FIXME: user prepend and reverse list order (GList) */
*attendees = g_slist_append (*attendees, ca);