* Mail/SMIME: fix signed calendar events not being displayed (error:importing the ical!)

This commit is contained in:
Hadi Nategh 2021-06-24 14:05:43 +02:00
parent 05405b955a
commit c8d2f535d9

View File

@ -3314,7 +3314,8 @@ $filter['before']= date("d-M-Y", $cutoffdate2);
if ($calendar_part && isset($GLOBALS['egw_info']['user']['apps']['calendar']))
{
$charset = $calendar_part->getContentTypeParameter('charset');
$this->mail_bo->fetchPartContents($uid, $calendar_part);
// Do not try to fetch raw part content if it's smime signed message
if (!$smime) $this->mail_bo->fetchPartContents($uid, $calendar_part);
Api\Cache::setSession('calendar', 'ical', array(
'charset' => $charset ? $charset : 'utf-8',
'attachment' => $calendar_part->getContents(),