Compare commits

..

No commits in common. "daceed8cd533b77a7a23d58c7db484c71cff0743" and "06a45ead4a432a3508c73cf5e790e8836fb6d5af" have entirely different histories.

2 changed files with 12 additions and 7 deletions

View File

@ -29,7 +29,6 @@ services:
- "{{ ip4_address }}:995:995"
- "{{ ip4_address }}:143:143"
- "{{ ip4_address }}:993:993"
- "{{ ip4_address }}:4190:4190"
volumes:
- "/etc/mailu/overrides/nginx:/overrides:ro"
- "/etc/mailu/certs:/certs"
@ -126,7 +125,7 @@ services:
# Optional services
antivirus:
image: clamav/clamav-debian:latest
image: ghcr.io/mailu/clamav:{{mailu_version}}
restart: {{docker_restart_policy}}
env_file: mailu.env
volumes:

View File

@ -142,10 +142,16 @@ LOG_LEVEL=WARNING
###################################
# Database settings
###################################
SQLALCHEMY_DATABASE_URI_ROUNDCUBE=mysql://{{database_username}}:{{database_password}}@{{database_host}}/{{database_name}}?collation=utf8mb4_unicode_ci
SQLALCHEMY_DATABASE_URI=mysql+mysqlconnector://{{database_username}}:{{database_password}}@{{database_host}}/{{database_name}}?collation=utf8mb4_unicode_ci
DB_FLAVOR=mysql
DB_USER={{database_username}}
DB_PW={{database_password}}
DB_HOST={{database_host}}:3306
DB_NAME={{database_name}}
ROUNDCUBE_DB_FLAVOR=mysql
ROUNDCUBE_DB_USER={{database_username}}
ROUNDCUBE_DB_PW={{database_password}}
ROUNDCUBE_DB_NAME={{database_name}}
ROUNDCUBE_DB_HOST={{database_host}}:3306
API_TOKEN={{mailu_api_token}}
# Activated https://mailu.io/master/configuration.html#advanced-settings
AUTH_REQUIRE_TOKENS=True
API_TOKEN={{mailu_api_token}}