Skip to content

Commit

Permalink
Only update attenddees when the currently synching mailbox is INBOX.
Browse files Browse the repository at this point in the history
Possible fix for Bug: 12956.
  • Loading branch information
mrubinsk committed Feb 5, 2014
1 parent 3b7ae5e commit 6c44c90
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions framework/Core/lib/Horde/Core/ActiveSync/Driver.php
Expand Up @@ -1292,9 +1292,12 @@ public function getMessage($folderid, $id, array $collection)

$this->_endBuffer();

// Should we import an iTip response if we have one?
if ($this->_version >= Horde_ActiveSync::VERSION_TWELVE &&
// Should we import an iTip response if we have one and we are in
// the INBOX?
if ($folder_split[self::FOLDER_PART_ID] == 'INBOX' &&
$this->_version >= Horde_ActiveSync::VERSION_TWELVE &&
$msg->contentclass == 'urn:content-classes:calendarmessage') {

switch ($msg->messageclass) {
case 'IPM.Schedule.Meeting.Resp.Pos':
case 'IPM.Schedule.Meeting.Resp.Neg':
Expand Down

0 comments on commit 6c44c90

Please sign in to comment.