Let Mailvelope use sender's address to find pubkeys to check signatures

pull/5964/merge
Christopher Gurnee 4 years ago committed by Aleksander Machniak
parent c3d4598985
commit 24d0cf5d34

@ -57,6 +57,7 @@ RELEASE 1.4.4
- Security: Fix remote code execution via crafted 'im_convert_path' or 'im_identify_path' settings
- Security: Fix local file inclusion (and code execution) via crafted 'plugins' option
- Security: Fix CSRF bypass that could be used to log out an authenticated user (#7302)
- Mailvelope: Use sender's address to find pubkeys to check signatures (#7348)
RELEASE 1.4.3
-------------

@ -4015,7 +4015,7 @@ function rcube_webmail()
ref.display_message(error.message, 'error');
};
mailvelope.createDisplayContainer(selector, data, keyring, { showExternalContent: this.env.safemode }).then(function(status) {
mailvelope.createDisplayContainer(selector, data, keyring, { senderAddress: this.env.sender }).then(function(status) {
if (status.error && status.error.message) {
return error_handler(status.error);
}

Loading…
Cancel
Save