mirror of
https://github.com/moparisthebest/mail
synced 2024-11-23 09:22:23 -05:00
increase rsa keysize to 2048
This commit is contained in:
parent
c2cf878632
commit
c977e9b682
@ -13,7 +13,7 @@ define([], function() {
|
|||||||
cloudUrl: 'https://storage.whiteout.io',
|
cloudUrl: 'https://storage.whiteout.io',
|
||||||
symKeySize: 128,
|
symKeySize: 128,
|
||||||
symIvSize: 128,
|
symIvSize: 128,
|
||||||
asymKeySize: 1024,
|
asymKeySize: 2048,
|
||||||
workerPath: 'js',
|
workerPath: 'js',
|
||||||
gmail: {
|
gmail: {
|
||||||
clientId: '440907777130.apps.googleusercontent.com',
|
clientId: '440907777130.apps.googleusercontent.com',
|
||||||
|
@ -17,7 +17,10 @@ define(function(require) {
|
|||||||
//
|
//
|
||||||
|
|
||||||
$scope.select = function(email) {
|
$scope.select = function(email) {
|
||||||
if (email && typeof email.body === 'string') {
|
if (!email) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (typeof email.body === 'string') {
|
||||||
email.bodyDisplayParts = email.body.split('\n');
|
email.bodyDisplayParts = email.body.split('\n');
|
||||||
}
|
}
|
||||||
$scope.selected = email;
|
$scope.selected = email;
|
||||||
|
Loading…
Reference in New Issue
Block a user