From a0f91948d9ed35573d0e03c2c1ee4a79f6a31bbe Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Tue, 7 Jan 2014 12:12:33 +0100 Subject: Ignore requests for 'outbox' --- lib/Kolab/CalDAV/CalendarBackend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Kolab/CalDAV/CalendarBackend.php b/lib/Kolab/CalDAV/CalendarBackend.php index 213dbea..d44f2aa 100644 --- a/lib/Kolab/CalDAV/CalendarBackend.php +++ b/lib/Kolab/CalDAV/CalendarBackend.php @@ -166,7 +166,7 @@ class CalendarBackend extends CalDAV\Backend\AbstractBackend } // retry with subscribed = false (#2701) - if (empty($this->calendars[$id]) && $this->subscribed === null && rcube::get_instance()->config->get('kolab_use_subscriptions')) { + if (empty($this->calendars[$id]) && $id != 'outbox' && $this->subscribed === null && rcube::get_instance()->config->get('kolab_use_subscriptions')) { $this->subscribed = false; unset($this->calendars); return $this->getCalendarByName($calendarUri); -- cgit v0.12