mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
W.I.P. SMIME:
- add notvalid state - add metadata for key add to contact
This commit is contained in:
parent
91fb816bb2
commit
f600436898
@ -7368,6 +7368,15 @@ class Mail
|
||||
{
|
||||
throw new Mail\Smime\PassphraseMissing($message['msg']);
|
||||
}
|
||||
// verifivation failure either message has been tempered,
|
||||
// signature is not valid or message has not ben signed
|
||||
// but encrypted only.
|
||||
else
|
||||
{
|
||||
$metadata['verify'] = false;
|
||||
$metadata['signed'] = true;
|
||||
$metadata['msg'] = $ex->getMessage();
|
||||
}
|
||||
}
|
||||
|
||||
if ($cert) // signed message, it might be encrypted too
|
||||
@ -7380,6 +7389,9 @@ class Mail
|
||||
'certHtml' => $this->smime->certToHTML($cert->cert),
|
||||
'signed' => true,
|
||||
));
|
||||
$AB_bo = new \addressbook_bo();
|
||||
$certkey = $AB_bo->get_smime_keys($cert->email);
|
||||
if (!is_array($certkey) || $certkey[$cert->email] != $cert->cert) $metadata['addtocontact'] = true;
|
||||
}
|
||||
else // only encrypted message
|
||||
{
|
||||
|
@ -5832,19 +5832,25 @@ app.classes.mail = AppJS.extend(
|
||||
$mail_container.addClass('smime_cert_verified');
|
||||
smime_signature.set_class('smime_cert_verified');
|
||||
}
|
||||
else if (!_data.verify)
|
||||
else if (!_data.verify && _data.cert)
|
||||
{
|
||||
$mail_container.addClass('smime_cert_notverified');
|
||||
smime_signature.set_class('smime_cert_notverified');
|
||||
smime_signature.set_statustext(_data.msg);
|
||||
}
|
||||
else if (!_data.verify && !_data.cert)
|
||||
{
|
||||
$mail_container.addClass('smime_cert_notvalid');
|
||||
smime_signature.set_class('smime_cert_notvalid');
|
||||
smime_signature.set_statustext(_data.msg);
|
||||
}
|
||||
},
|
||||
|
||||
smime_clear_flags: function (_nodes)
|
||||
{
|
||||
for(var i=0;i<_nodes.length;i++)
|
||||
{
|
||||
var smime_classes = 'smime_cert_verified smime_cert_notverified';
|
||||
var smime_classes = 'smime_cert_verified smime_cert_notverified smime_cert_notvalid';
|
||||
_nodes[i].removeClass(smime_classes);
|
||||
}
|
||||
|
||||
|
@ -917,16 +917,16 @@ div.smime_cert_notverified {
|
||||
border-top: 4px solid lightgreen !important;
|
||||
}
|
||||
img.smime_cert_notverified {
|
||||
background: lightgreen !important;
|
||||
background: lightgreen;
|
||||
}
|
||||
div.smime_cert_verified {
|
||||
border-top: 4px solid green;
|
||||
border-top: 4px solid green !important;
|
||||
}
|
||||
img.smime_cert_verified {
|
||||
background: green;
|
||||
}
|
||||
div.smime_cert_notvalid {
|
||||
border-top: 4px solid red;
|
||||
border-top: 4px solid red !important;
|
||||
}
|
||||
img.smime_cert_notvalid {
|
||||
background: red;
|
||||
|
@ -905,16 +905,16 @@ div.smime_cert_notverified {
|
||||
border-top: 4px solid lightgreen !important;
|
||||
}
|
||||
img.smime_cert_notverified {
|
||||
background: lightgreen !important;
|
||||
background: lightgreen;
|
||||
}
|
||||
div.smime_cert_verified {
|
||||
border-top: 4px solid green;
|
||||
border-top: 4px solid green !important;
|
||||
}
|
||||
img.smime_cert_verified {
|
||||
background: green;
|
||||
}
|
||||
div.smime_cert_notvalid {
|
||||
border-top: 4px solid red;
|
||||
border-top: 4px solid red !important;
|
||||
}
|
||||
img.smime_cert_notvalid {
|
||||
background: red;
|
||||
|
@ -893,16 +893,16 @@ div.smime_cert_notverified {
|
||||
border-top: 4px solid lightgreen !important;
|
||||
}
|
||||
img.smime_cert_notverified {
|
||||
background: lightgreen !important;
|
||||
background: lightgreen;
|
||||
}
|
||||
div.smime_cert_verified {
|
||||
border-top: 4px solid green;
|
||||
border-top: 4px solid green !important;
|
||||
}
|
||||
img.smime_cert_verified {
|
||||
background: green;
|
||||
}
|
||||
div.smime_cert_notvalid {
|
||||
border-top: 4px solid red;
|
||||
border-top: 4px solid red !important;
|
||||
}
|
||||
img.smime_cert_notvalid {
|
||||
background: red;
|
||||
|
Loading…
Reference in New Issue
Block a user