Added session purge, email templates, email sending, and fixed user bugs
This commit is contained in:
16
config.js
Normal file
16
config.js
Normal file
@@ -0,0 +1,16 @@
|
||||
var config = {};
|
||||
|
||||
// Mailer settings
|
||||
config.mail = {};
|
||||
config.mail.host = "localhost";
|
||||
config.mail.port = "465";
|
||||
config.mail.secure = false;
|
||||
config.mail.user = "username";
|
||||
config.mail.pass = "pass";
|
||||
config.mail.from = "<noreply@knologic.com>"
|
||||
|
||||
// Session purge settings
|
||||
config.maxSessionLength = 30;
|
||||
|
||||
|
||||
module.exports = config;
|
||||
Reference in New Issue
Block a user