mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-08 00:47:04 +03:00
Bugfix: verify S/MIME signatures got broken allong the way while implementing this
This commit is contained in:
parent
d5d47ffed1
commit
aebed32f76
2 changed files with 4 additions and 3 deletions
|
|
@ -115,11 +115,11 @@ trait SMime
|
|||
public function DoSMimeVerifyMessage() : array
|
||||
{
|
||||
$sBody = $this->GetActionParam('bodyPart', '');
|
||||
$sPartId = $this->GetActionParam('partId', '');
|
||||
$bDetached = !empty($this->GetActionParam('detached', 0));
|
||||
if (!$sBody) {
|
||||
if (!$sBody && $sPartId) {
|
||||
$sFolderName = $this->GetActionParam('folder', '');
|
||||
$iUid = (int) $this->GetActionParam('uid', 0);
|
||||
$sPartId = $this->GetActionParam('partId', '');
|
||||
$sMicAlg = $this->GetActionParam('micAlg', '');
|
||||
|
||||
$this->initMailClientConnection();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue