mirror of
https://github.com/HaschekSolutions/opentrashmail.git
synced 2026-04-25 14:45:59 +03:00
[GH-ISSUE #39] How to configure multiple domain ? #22
Labels
No labels
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/opentrashmail#22
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jfg on GitHub (Mar 23, 2022).
Original GitHub issue: https://github.com/HaschekSolutions/opentrashmail/issues/39
Hi,
First, thanks for your job.
I would like to configure multiple domain and tried this command :
docker run -d --restart=unless-stopped --name opentrashmail -e "DOMAINS=test.fr, test2.fr test3.fr" -e "DATEFORMAT='D.M.YYYY HH:mm'" -e "DISCARD_UNKNOWN=true" -e "DELETE_OLDER_THAN_DAYS=1" -p 80:80 -p 25:25 hascheksolutions/opentrashmailBut that did not works.
Is it possible ?
Thanks
@geek-at commented on GitHub (Mar 25, 2022):
Yes it should work. But try it without spaces and also you forgot a colon.
Try this:
docker run -d --restart=unless-stopped --name opentrashmail -e "DOMAINS=test.fr,test2.fr,test3.fr" -e "DATEFORMAT='D.M.YYYY HH:mm'" -e "DISCARD_UNKNOWN=true" -e "DELETE_OLDER_THAN_DAYS=1" -p 80:80 -p 25:25 hascheksolutions/opentrashmail