From f2c49ba3084b089a9cec2e030d6c893f4814e93e Mon Sep 17 00:00:00 2001 From: Lloyd Hilaiel <lloyd@hilaiel.com> Date: Tue, 8 Nov 2011 09:23:13 -0700 Subject: [PATCH] make authentication good for *2 weeks* instead of one. closes #543 --- lib/configuration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/configuration.js b/lib/configuration.js index 22cd848c6..4b150976d 100644 --- a/lib/configuration.js +++ b/lib/configuration.js @@ -83,7 +83,7 @@ g_configs.production = { create_schema: true }, bcrypt_work_factor: 12, - authentication_duration_ms: (7 * 24 * 60 * 60 * 1000), + authentication_duration_ms: (2 * 7 * 24 * 60 * 60 * 1000), certificate_validity_ms: (24 * 60 * 60 * 1000), min_time_between_emails_ms: (60 * 1000) }; -- GitLab