mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 00:13:47 +03:00
f1f3135135
because with the name you would expect an account name. and the email-resolving behaviour is surprising: with wildcard addresses you can use any address, including a typo. you would change the password of the address with the wildcard, without any warning. accounts are more precise and less error-prone. for issue #68 by x8x
31 lines
878 B
YAML
31 lines
878 B
YAML
version: '3.7'
|
|
services:
|
|
mox:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.moximaptest
|
|
volumes:
|
|
- ./testdata/imaptest/config:/mox/config
|
|
- ./testdata/imaptest/data:/mox/data
|
|
- ./testdata/imaptest/imaptest.mbox:/mox/imaptest.mbox
|
|
working_dir: /mox
|
|
tty: true # For job control with set -m.
|
|
command: sh -c 'set -m; mox serve & sleep 1; echo testtest | mox setaccountpassword mjl; fg'
|
|
healthcheck:
|
|
test: netstat -nlt | grep ':1143 '
|
|
interval: 1s
|
|
timeout: 1s
|
|
retries: 10
|
|
|
|
imaptest:
|
|
build:
|
|
dockerfile: Dockerfile.imaptest
|
|
context: .
|
|
command: host=mox port=1143 'user=mjl@mox.example' pass=testtest mbox=/imaptest/imaptest.mbox
|
|
working_dir: /imaptest
|
|
volumes:
|
|
- ./testdata/imaptest:/imaptest
|
|
depends_on:
|
|
mox:
|
|
condition: service_healthy
|
|
restart: never
|