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

37
data/db.json Normal file
View File

@@ -0,0 +1,37 @@
{
"emails": [
{
"id": "kvXkk2kMjJntCMesl3yZq",
"from": "\"Test\" <test@example.com>",
"to": "\"Destinataire\" <destinataire@example.com>",
"subject": "Test de notification",
"text": "Ceci est un test d'envoi d'email vers le serveur mail local.\n\n",
"html": "",
"receivedAt": "2025-05-07T13:55:52.951Z",
"attachments": 0,
"read": true
}
],
"settings": {
"smtp": {
"port": 2525,
"host": "0.0.0.0",
"secure": false,
"authOptional": true
},
"pushover": {
"user": "u1chkifjzxpv15fcp3h56qs2gj1dup",
"token": "ah9uacr4mg5isbb86qeg2jyf35mxpk",
"title": "Mail Notifier",
"sound": "pushover",
"priority": 0
},
"admin": {
"username": "admin",
"enableAuth": true
},
"version": "1.0.0",
"createdAt": "2025-05-07T13:42:52.510Z",
"updatedAt": "2025-05-07T13:54:24.307Z"
}
}