mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-29 16:15:55 +00:00
Resolve small issues in the docker-compose files (#71)
And move optional extended configs directly into the compose/.env files
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
# databse host address
|
||||
# database host address, leave empty for default host "db"
|
||||
DB_HOST=
|
||||
|
||||
# the database type mysql or pgsql
|
||||
# the database type mysql or pgsql, leave empty for default (depending on your docker-compose.yml)
|
||||
DB_TYPE=
|
||||
|
||||
# the datbase port (mysql 3306) (pqsql 5432)
|
||||
# the database port (mysql 3306) (pqsql 5432), leave empty for default (depending on your docker-compose.yml)
|
||||
DB_PORT=
|
||||
|
||||
# the databse name
|
||||
# the database name, leave empty for default "dmarc_report"
|
||||
DB_NAME=
|
||||
|
||||
# the databse name
|
||||
# the database name, leave empty for default "dmarc_report"
|
||||
DB_USER=
|
||||
|
||||
# mysql root password. Irrelevant if you are using postgres
|
||||
@@ -28,7 +28,7 @@ IMAP_PASSWORD=
|
||||
# the server the email address is hosted on
|
||||
IMAP_SERVER=
|
||||
|
||||
# optional: default is 993 ( or 143)
|
||||
# optional: default is 993 (or 143)
|
||||
IMAP_PORT=
|
||||
|
||||
# optional: default is "Inbox"
|
||||
@@ -38,4 +38,16 @@ IMAP_READ_FOLDER
|
||||
IMAP_MOVE_FOLDER=
|
||||
|
||||
# optional: default is "error"
|
||||
IMAP_MOVE_FOLDER_ERR=
|
||||
IMAP_MOVE_FOLDER_ERR=
|
||||
|
||||
# Enable SSL and/or (START-)TLS. Set both to 0 to disable encryption (not recommended)
|
||||
PARSER_IMAP_SSL=0
|
||||
PARSER_IMAP_TLS=1
|
||||
|
||||
# Ignore ERROR: message_string() issue experienced with Exchange Online. Set to 1 to enable
|
||||
PARSER_IMAP_IGNORE_ERROR=0
|
||||
|
||||
# Increase the maximum size of the XML file. (default is 50000 bytes)
|
||||
# When the size exceeds the maximum, one could experience an error Uncaught ValueError: DOMDocument::loadXML():
|
||||
# Argument #1 ($source) must not be empty.
|
||||
PARSER_XML_MAXSIZE=50000
|
||||
Reference in New Issue
Block a user