forked from extern/egroupware
Smime W.I.P:
- Fix smime passphrase dialog
This commit is contained in:
parent
afe1459387
commit
61c9acce84
@ -2996,7 +2996,10 @@ class mail_compose
|
||||
if (!$smime_success)
|
||||
{
|
||||
$response = Api\Json\Response::get();
|
||||
$response->call('app.mail.smimePassDialog');
|
||||
$this->errorInfo = $_formData['smime_passphrase'] == ''?
|
||||
lang('You need to enter your S/MIME passphrase to send this message.'):
|
||||
lang('The entered passphrase is not correct! Please try again.');
|
||||
$response->call('app.mail.smimePassDialog', $this->errorInfo);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@ -3627,11 +3630,12 @@ class mail_compose
|
||||
/**
|
||||
* Method to do encryption on given mail object
|
||||
*
|
||||
* @param Horde_MIME_Mail $mail
|
||||
* @param Api\Mailer $mail
|
||||
* @param string $type encryption type
|
||||
* @param array|string $recipients list of recipients
|
||||
* @param string $sender email of sender
|
||||
*
|
||||
* @param string $passphrase = '', SMIME Private key passphrase
|
||||
*
|
||||
* @return boolean returns true if successful and false if passphrase required
|
||||
* @throws Api\Exception\WrongUserinput if no certificate found
|
||||
*/
|
||||
|
@ -5699,26 +5699,34 @@ app.classes.mail = AppJS.extend(
|
||||
|
||||
/**
|
||||
* smime password dialog
|
||||
*/
|
||||
smimePassDialog: function ()
|
||||
*
|
||||
* @param {string} _msg message
|
||||
*/
|
||||
smimePassDialog: function (_msg)
|
||||
{
|
||||
var self = this;
|
||||
et2_createWidget("dialog",
|
||||
{
|
||||
callback: function(_button_id, _value)
|
||||
{
|
||||
if (_button_id && _value)
|
||||
if (_button_id == 'send' && _value)
|
||||
{
|
||||
var pass = self.et2.getWidgetById('smime_passphrase');
|
||||
pass.set_value(_value.value);
|
||||
var toolbar = self.et2.getWidgetById('composeToolbar');
|
||||
toolbar.value = 'send';
|
||||
self.compose_submitAction(false);
|
||||
}
|
||||
},
|
||||
title: egw.lang('Request for passphrase'),
|
||||
buttons: et2_dialog.BUTTONS_OK_CANCEL,
|
||||
buttons: [
|
||||
{text: this.egw.lang("Send"), id: "send", "class": "ui-priority-primary", "default": true},
|
||||
{text: this.egw.lang("Cancel"), id:"cancel"}
|
||||
],
|
||||
value:{
|
||||
content:{
|
||||
value: '',
|
||||
message: self.egw.lang('Looks like your certificate is password protected. Please enter your passphrase and try to send again.')
|
||||
message: _msg
|
||||
}},
|
||||
template: egw.webserverUrl+'/api/templates/default/password.xet',
|
||||
resizable: false
|
||||
|
Loading…
Reference in New Issue
Block a user