-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmidemail.env.example
More file actions
41 lines (34 loc) · 990 Bytes
/
midemail.env.example
File metadata and controls
41 lines (34 loc) · 990 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
# Universal config file for midemail.
# You can keep this in project root as midemail.env
# or pass an explicit path with MIDEMAIL_CONFIG_FILE.
DATABASE_URL=postgres://user:[email protected]:5432/midemail?sslmode=disable
JWT_SECRET=change-me
REDIS_ADDR=127.0.0.1:6379
HTTP_ADDR=:8080
SMTP_INBOUND_ADDR=:2525
SMTP_SUBMISSION_ADDR=:2587
SMTP_HOSTNAME=mail.example.com
SMTP_MAX_MESSAGE_BYTES=26214400
SMTP_ALLOW_INSECURE_AUTH=false
IMAP_ADDR=:2993
IMAP_HOSTNAME=mail.example.com
IMAP_ALLOW_INSECURE=false
STORAGE_PROVIDER=local
LOCAL_STORAGE_PATH=var/storage
STREAM_SEND=jobs.send
STREAM_RECEIVE=jobs.receive
STREAM_IMAP=jobs.imap
STREAM_RETRY=jobs.retry
STREAM_DLQ=jobs.dlq
STREAM_SENDER_GROUP=sender-workers
STREAM_RECEIVER_GROUP=receiver-workers
STREAM_IMAP_GROUP=imap-workers
STREAM_ORCH_GROUP=orchestrators
PUSH_ENABLED=false
PUSH_FCM_SERVER_KEY=
PUSH_APNS_ENABLED=false
PUSH_APNS_KEY_ID=
PUSH_APNS_TEAM_ID=
PUSH_APNS_BUNDLE_ID=
PUSH_APNS_PRIVATE_KEY_PEM=
PUSH_APNS_USE_SANDBOX=false