Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Gurnee <chris@gurneeconsulting.net>2020-04-24 04:03:04 +0300
committerChristopher Gurnee <chris@gurneeconsulting.net>2020-06-02 23:55:04 +0300
commit2f719282264888951405a853b2f560c81d8ad3ee (patch)
tree251d84d30de40022e9e28962ffaf38cb705f2925 /program/js/app.js
parentcc3779f7ed1c1c1239ee82d916c23187aa1a1373 (diff)
Add config option for size of new Mailvelope keys
Diffstat (limited to 'program/js/app.js')
-rw-r--r--program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 89661fd68..46efb6995 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -4268,7 +4268,7 @@ function rcube_webmail()
{
var cid = new Date().getTime();
var user_id = {email: identity_email, fullName: $(ref.gui_objects.editform).find('.ff_name').val().trim()};
- var options = {userIds: [user_id], keySize: 4096};
+ var options = {userIds: [user_id], keySize: this.env.mailvelope_keysize};
$('<div>').attr('id', 'mailvelope-keygen-container-' + cid)
.css({height: '245px', marginBottom: '10px'})