mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-05 00:27:25 +00:00
[ERROR] Jun 11 17:30:15 lmtp(alice@somedomain.com): Error: open(/etc/dovecot/sieve-spam.svbin.box.abc.com.13806.26a2405f731160b1) failed: Read-only file system [ERROR] Jun 11 17:30:15 lmtp(alice@somedomain.com): Error: GKVhOyZq4l7uNQAAasegNA: sieve: binary save: failed to create temporary file: open(/etc/dovecot/sieve-spam.svbin.) failed: Read-only file system systemctl service setting for dovecot includes ProtectSystem=full, so /etc will be read-only. need to understand why sieve is attempting to create a temp file or maybe move sieve script to /var
39 lines
877 B
YAML
39 lines
877 B
YAML
# travisci config
|
|
env:
|
|
global:
|
|
- PRIMARY_HOSTNAME=box.abc.com
|
|
|
|
language: shell
|
|
os: linux
|
|
dist: bionic
|
|
|
|
before_install:
|
|
- echo "==== ENVIRONMENT ===="
|
|
- env | sort
|
|
- echo "UMASK=$(umask)"
|
|
#
|
|
- echo "==== AppArmor Status ===="
|
|
- (sudo aa-status; true)
|
|
#
|
|
- echo "==== NETWORK INFO ===="
|
|
- hostname -I
|
|
- hostname -i
|
|
- hostname
|
|
- hostname --fqdn
|
|
- ip add
|
|
- sysctl -a 2>/dev/null | grep -i ipv6 | grep disable
|
|
|
|
install:
|
|
- sudo tests/system-setup/remote-nextcloud-docker.sh
|
|
- hostname || true
|
|
- hostname --fqdn || true
|
|
- getent hosts box.abc.com || true
|
|
|
|
script:
|
|
#
|
|
# launch automated tests, but skip tests that require remote
|
|
# smtp support because Travis-CI blocks outgoing port 25
|
|
- sudo ls -al /etc/dovecot
|
|
- sudo touch /etc/dovecot/sieve-spam.svbin
|
|
- sudo tests/runner.sh -dumpoutput -no-smtp-remote default remote-nextcloud
|