diff options
Diffstat (limited to 'plugins/mail-to-meeting/mail-to-meeting.c')
-rw-r--r-- | plugins/mail-to-meeting/mail-to-meeting.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); |