This commit is contained in:
Joris Bertomeu
2025-08-19 16:34:19 +02:00
commit 5c6da90f98
33 changed files with 8066 additions and 0 deletions

28
config/default.json Normal file
View File

@@ -0,0 +1,28 @@
{
"server": {
"port": 3000,
"sessionSecret": "localMailNotifierSecret"
},
"smtp": {
"port": 2525,
"host": "0.0.0.0",
"secure": false,
"authOptional": true,
"authRequired": false
},
"pushover": {
"user": "",
"token": "",
"title": "Mail Notifier",
"sound": "pushover",
"priority": 0
},
"admin": {
"username": "admin",
"password": "admin",
"enableAuth": true
},
"db": {
"path": "./data/db.json"
}
}