diff options
author | Thomas Bruederli <bruederli@kolabsys.com> | 2014-01-07 11:12:33 (GMT) |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2014-01-07 15:40:50 (GMT) |
commit | a0f91948d9ed35573d0e03c2c1ee4a79f6a31bbe (patch) | |
tree | ec085acbcdf9ac3f485e65a3293114d868d244dd | |
parent | 13b1c30d140314ebc2379e26b35fa8e7bacd67e8 (diff) | |
download | iRony-a0f91948d9ed35573d0e03c2c1ee4a79f6a31bbe.tar.gz |
Ignore requests for 'outbox'
-rw-r--r-- | lib/Kolab/CalDAV/CalendarBackend.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); |