Skip to content

Commit

Permalink
Parse x-pkcs7-mime as well.
Browse files Browse the repository at this point in the history
Possible fix for Bug: 12970
  • Loading branch information
mrubinsk committed Apr 7, 2014
1 parent 3081367 commit 1082153
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion framework/ActiveSync/lib/Horde/ActiveSync/Imap/Message.php
Expand Up @@ -884,7 +884,8 @@ public function isSigned($message = null)
if (empty($message)) {
$message = $this->_message;
}
if ($message->getType() == 'application/pkcs7-mime') {
if ($message->getType() == 'application/pkcs7-mime' ||
$message->getType() == 'application/x-pkcs7-mime') {
return true;
}

Expand Down

0 comments on commit 1082153

Please sign in to comment.