Ticket #328 (new Usability)
CalDAV: no way to set default organiser?
| Reported by: | aeadolf | Owned by: | Cyrus Daboo |
|---|---|---|---|
| Priority: | major | Milestone: | unassigned |
| Component: | Application | Version: | v4.0.8 |
| Severity: | Other | Keywords: | |
| Cc: | Operating System: | All | |
| OS Version: |
Description
The CalDAV access to Google calendar has a restriction that the organiser for a new appointment has to match with the Google account. Otherwise the appointment is rejected by the server.
When I click "Add Attendees" , the pop-up for selecting the organiser always defaults to my first identity. As this is not the one I use for my CalDAV account I need to change the organiser each and every time when I create a new appointment.
I think it would he useful if the Organiser would default to the "tie to identity" setting for the calendar account if set, and to the first identity otherwise.
Note: See
TracTickets for help on using
tickets.
p.s.: extended suggested hunt sequence for determining the default organiser for an event
if (calendar->identity != NIL) { newEvent->organiser = calendar->identity; } else if (calendar->parentAccount->identity != NIL) { newEvent->organiser = calendar->parentAccount->identity; } else { newEvent->organiser = defaultIdentity; }