You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
623 B
Bash
20 lines
623 B
Bash
6 years ago
|
cat << EOF | docker-compose -f tests/compose/core/docker-compose.yml exec -T admin flask mailu config-update -v 1
|
||
|
users:
|
||
|
- localpart: replyuser
|
||
|
password_hash: "\$1\$F2OStvi1\$Q8hBIHkdJpJkJn/TrMIZ9/"
|
||
|
domain: mailu.io
|
||
|
reply_enabled: true
|
||
|
reply_subject: This will not reach me
|
||
|
reply_body: Cause this is just a test
|
||
|
EOF
|
||
|
|
||
|
python3 tests/reply_test.py
|
||
|
|
||
|
cat << EOF | docker-compose -f tests/compose/core/docker-compose.yml exec -T admin flask mailu config-update -v 1
|
||
|
users:
|
||
|
- localpart: replyuser
|
||
|
password_hash: "\$1\$F2OStvi1\$Q8hBIHkdJpJkJn/TrMIZ9/"
|
||
|
domain: mailu.io
|
||
|
reply_enabled: false
|
||
|
EOF
|