mirror of
https://github.com/Crazyco-xyz/48hr.email.git
synced 2025-12-14 13:56:32 +01:00
update .env.example formatting
This commit is contained in:
parent
d59a81c838
commit
1f8cad55d4
1 changed files with 21 additions and 17 deletions
38
.env.example
38
.env.example
|
|
@ -1,26 +1,30 @@
|
||||||
# --- EMAIL CONFIGURATION ---
|
# --- EMAIL CONFIGURATION ---
|
||||||
EMAIL_DOMAINS=["example.com","example.net"] # List of domains your service handles (list)
|
EMAIL_DOMAINS=["example.com","example.net"] # List of domains your service handles (list)
|
||||||
|
|
||||||
# --- Purge configuration ---
|
# --- Purge configuration ---
|
||||||
EMAIL_PURGE_TIME=48 # Time value for when to purge
|
EMAIL_PURGE_TIME=48 # Time value for when to purge
|
||||||
EMAIL_PURGE_UNIT="hours" # minutes, hours, days
|
EMAIL_PURGE_UNIT="hours" # minutes, hours, days
|
||||||
EMAIL_PURGE_CONVERT=true # Convert to highest sensible unit (and round)
|
EMAIL_PURGE_CONVERT=true # Convert to highest sensible unit (and round)
|
||||||
|
|
||||||
# --- Example emails to keep clean ---
|
# --- Example emails to keep clean ---
|
||||||
EMAIL_EXAMPLE_ACCOUNT="example@48hr.email" # example email to preserve
|
EMAIL_EXAMPLE_ACCOUNT="example@48hr.email" # example email to preserve
|
||||||
EMAIL_EXAMPLE_UIDS=[1,2,3] # example UIDs to preserve
|
EMAIL_EXAMPLE_UIDS=[1,2,3] # example UIDs to preserve
|
||||||
|
|
||||||
# --- IMAP CONFIGURATION ---
|
# --- IMAP CONFIGURATION ---
|
||||||
IMAP_USER="user@example.com" # IMAP username
|
IMAP_USER="user@example.com" # IMAP username
|
||||||
IMAP_PASSWORD="password" # IMAP password
|
IMAP_PASSWORD="password" # IMAP password
|
||||||
IMAP_SERVER="imap.example.com" # IMAP server address
|
IMAP_SERVER="imap.example.com" # IMAP server address
|
||||||
IMAP_PORT=993 # IMAP port (default 993)
|
IMAP_PORT=993 # IMAP port (default 993)
|
||||||
IMAP_TLS=true # Use secure TLS connection (true/false)
|
IMAP_TLS=true # Use secure TLS connection (true/false)
|
||||||
IMAP_AUTH_TIMEOUT=3000 # Authentication timeout in ms
|
IMAP_AUTH_TIMEOUT=3000 # Authentication timeout in ms
|
||||||
IMAP_REFRESH_INTERVAL_SECONDS=60 # Refresh interval for checking new emails
|
IMAP_REFRESH_INTERVAL_SECONDS=60 # Refresh interval for checking new emails
|
||||||
|
|
||||||
# --- HTTP / WEB CONFIGURATION ---
|
# --- HTTP / WEB CONFIGURATION ---
|
||||||
HTTP_PORT=3000 # Port
|
HTTP_PORT=3000 # Port
|
||||||
HTTP_BRANDING=["48hr.email","CrazyCo","https://crazyco.xyz"]
|
HTTP_BRANDING=["48hr.email","CrazyCo","https://crazyco.xyz"] # [service_title, company_name, company_url]
|
||||||
HTTP_DISPLAY_SORT=2
|
HTTP_DISPLAY_SORT=2 # Domain display sorting:
|
||||||
HTTP_HIDE_OTHER=false
|
# 0 = no change,
|
||||||
|
# 1 = alphabetical,
|
||||||
|
# 2 = alphabetical + first item shuffled,
|
||||||
|
# 3 = shuffle all
|
||||||
|
HTTP_HIDE_OTHER=false # true = only show first domain, false = show all
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue