Skip to content

Commit 63c4227

Browse files
author
Istiak Ferdous
authored
generate 16 digit strong password for email
1 parent 1c4fe2c commit 63c4227

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mailServer/static/mailServer/mailServer.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ app.controller('createEmailAccount', function ($scope, $http) {
110110

111111
$scope.generatePassword = function () {
112112
$scope.generatedPasswordView = false;
113-
$scope.emailPassword = randomPassword(12);
113+
$scope.emailPassword = randomPassword(16);
114114
};
115115

116116
$scope.usePassword = function () {
@@ -465,7 +465,7 @@ app.controller('changeEmailPassword', function ($scope, $http) {
465465

466466
$scope.generatePassword = function () {
467467
$scope.generatedPasswordView = false;
468-
$scope.emailPassword = randomPassword(12);
468+
$scope.emailPassword = randomPassword(16);
469469
};
470470

471471
$scope.usePassword = function () {
@@ -1291,4 +1291,4 @@ app.controller('listEmails', function ($scope, $http) {
12911291
});
12921292

12931293

1294-
/* Java script code for List Emails Ends here */
1294+
/* Java script code for List Emails Ends here */

0 commit comments

Comments
 (0)