forked from synox/void-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
30 lines (30 loc) · 955 Bytes
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "VOID disposable email",
"description": "a simple and fast disposable mail service that works directly with your imap server. No database required.",
"repository": "https://github.com/synox/void-mail",
"logo": "https://github.com/synox/void-mail/raw/master/docs/void-text.gif",
"keywords": [
"node",
"disposable-mail"
],
"env": {
"DOMAIN": {
"description": "Email domain."
},
"IMAP_SERVER": {
"description": "Hostname of the server (usually imap.example.com)"
},
"IMAP_USER": {
"description": "Username to login to the imap server"
},
"IMAP_PASSWORD": {
"description": "Password to login to the imap server"
},
"IMAP_REFRESH_INTERVAL_SECONDS": {
"description": "How often to refresh the imap messages manually"
},
"DELETE_MAILS_OLDER_THAN_DAYS": {
"description": "How many days to to wait before deleting messages. (default: `30`)"
}
}
}