2023-11-01 11:48:19 +01:00
|
|
|
{
|
2024-10-01 23:29:09 +02:00
|
|
|
"name": "48hr.email | Disposable email",
|
|
|
|
"description": "A simple and fast disposable mail service that works directly with your already existing imap server. No database required.",
|
2023-11-01 11:48:19 +01:00
|
|
|
"repository": "https://github.com/Crazyco-xyz/48hr.email",
|
2024-10-01 23:29:09 +02:00
|
|
|
"logo": "https://github.com/Crazyco-xyz/48hr.email/blob/main/infrastructure/web/public/images/logo.png",
|
2023-11-01 11:48:19 +01:00
|
|
|
"keywords": [
|
|
|
|
"node",
|
|
|
|
"disposable-mail"
|
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"DOMAINS": {
|
2024-10-01 23:29:09 +02:00
|
|
|
"description": "Email domains"
|
2023-11-01 11:48:19 +01:00
|
|
|
},
|
2024-10-03 02:14:47 +02:00
|
|
|
"EMAIL_PURGE_TIME": {
|
|
|
|
"description": "Config for when to purge the emails",
|
|
|
|
"value": {
|
|
|
|
"time": 48,
|
|
|
|
"unit": "hours",
|
|
|
|
"convert": true
|
|
|
|
}
|
2023-11-01 11:48:19 +01:00
|
|
|
},
|
|
|
|
"IMAP_USER": {
|
|
|
|
"description": "Username to login to the imap server"
|
|
|
|
},
|
|
|
|
"IMAP_PASSWORD": {
|
|
|
|
"description": "Password to login to the imap server"
|
|
|
|
},
|
2024-10-01 23:29:09 +02:00
|
|
|
"IMAP_SERVER": {
|
|
|
|
"description": "Hostname of the server (usually imap.example.com or mx.example.com)"
|
|
|
|
},
|
|
|
|
"IMAP_PORT": {
|
|
|
|
"description": "Port of the server (usually 993)",
|
|
|
|
"value": 993
|
|
|
|
},
|
|
|
|
"IMAP_TLS": {
|
|
|
|
"description": "Use tls or not",
|
|
|
|
"value": true
|
|
|
|
},
|
|
|
|
"IMAP_AUTHTIMEOUT": {
|
|
|
|
"description": "Timeout for the auth",
|
|
|
|
"value": 3000
|
|
|
|
},
|
2023-11-01 11:48:19 +01:00
|
|
|
"IMAP_REFRESH_INTERVAL_SECONDS": {
|
2024-10-01 23:29:09 +02:00
|
|
|
"description": "How often to refresh the imap messages manually",
|
|
|
|
"value": 60
|
2023-11-01 11:48:19 +01:00
|
|
|
},
|
2024-10-01 23:29:09 +02:00
|
|
|
"HTTP_PORT": {
|
|
|
|
"description": "Port to listen on",
|
|
|
|
"value": 3000
|
|
|
|
},
|
|
|
|
"HTTP_BRANDING": {
|
|
|
|
"description": "The branding of the site",
|
|
|
|
"value": ["48hr.email", "Crazyco", "https://crazyco.xyz"]
|
2024-10-03 02:14:47 +02:00
|
|
|
},
|
|
|
|
"HTTP_EXAMPLES": {
|
|
|
|
"description": "Examples of the domains",
|
|
|
|
"value": {
|
|
|
|
"email": "example@48hr.email",
|
2024-10-21 00:22:06 +02:00
|
|
|
"uids": [1, 2, 3]
|
2024-10-03 02:14:47 +02:00
|
|
|
}
|
2023-11-01 11:48:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|