mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-17 17:56:30 +00:00
fix: more environment vars for parser, fixes #52
* also update source dates
This commit is contained in:
parent
58d3e23ff1
commit
36b5748844
@ -28,9 +28,9 @@ New dmarc reports will be fetched every 15 minutes past the hour, every hour. Th
|
|||||||
|
|
||||||
## Versions for last build latest and docker image tag 1.4
|
## Versions for last build latest and docker image tag 1.4
|
||||||
|
|
||||||
dmarcts report viewer: 2023-01-07
|
dmarcts report viewer: 2024-02-04
|
||||||
|
|
||||||
dmarcts report parser: 2023-01-07
|
dmarcts report parser: 2024-02-04
|
||||||
|
|
||||||
CAUTION: The old gutmensch/dmarc-report:latest image (older alpine, php5, etc.) is available still as gutmensch/dmarc-report:0.5. The current latest (and 1.0) uses the latest alpine version, newer MySQL client libraries, newer OpenSSL, etc. and improves compatibilitiy with MySQL 8+.
|
CAUTION: The old gutmensch/dmarc-report:latest image (older alpine, php5, etc.) is available still as gutmensch/dmarc-report:0.5. The current latest (and 1.0) uses the latest alpine version, newer MySQL client libraries, newer OpenSSL, etc. and improves compatibilitiy with MySQL 8+.
|
||||||
|
|
||||||
|
|||||||
@ -5,8 +5,8 @@
|
|||||||
# If IMAP access is not used, config options starting with $imap do not need to
|
# If IMAP access is not used, config options starting with $imap do not need to
|
||||||
# be set and are ignored.
|
# be set and are ignored.
|
||||||
|
|
||||||
$debug = 0;
|
$debug = $ENV{'PARSER_DEBUG'} // 0;
|
||||||
$delete_reports = 0;
|
$delete_reports = $ENV{'PARSER_DELETE_REPORTS'} // 0;
|
||||||
|
|
||||||
$dbname = $ENV{'REPORT_DB_NAME'};
|
$dbname = $ENV{'REPORT_DB_NAME'};
|
||||||
$dbuser = $ENV{'REPORT_DB_USER'};
|
$dbuser = $ENV{'REPORT_DB_USER'};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user