We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using maildev with the latest docker image i get : Error: unknown option `--mail-directory'
The text was updated successfully, but these errors were encountered:
In Docker Compose, this parameter works absolutely fine. Here is an example:
version: "3.8" services: maildev: image: "maildev/maildev:latest" container_name: "maildev" hostname: "maildev" command: ["--mail-directory=/maildir"] volumes: - maildev-data:/maildir restart: always networks: - network-internal depends_on: - php volumes: maildev-data: name: "maildev.data"
Be sure to change the directory permissions to the user node afterwards:
node
docker compose exec -u root maildev sh
Within the container:
chown -R node:node maildir/ chmod -R 775 maildir/
Sorry, something went wrong.
We are using it like this: services: maildev: image: "maildev/maildev:latest" command: [ "/usr/src/app/bin/maildev", "--web-user", "xx", "--web-pass", "xxx", "--web", "80", "--smtp", "25", "--outgoing-port", "465", "--outgoing-host", "xx", "--outgoing-user", "xx", "--outgoing-pass", "xx", "--outgoing-secure", "--incoming-user", "xx", "--incoming-pass", "xx", "--auto-relay", "--auto-relay-rules", "/etc/mailrelay.json" ]
if im now adding --mail-directory=/maildir
i get : Error: unknown option `--mail-directory'
maybe its related to : #420
No branches or pull requests
When using maildev with the latest docker image i get : Error: unknown option `--mail-directory'
The text was updated successfully, but these errors were encountered: