fix: more environment vars for parser, fixes #52

* also update source dates
This commit is contained in:
Robert Schumann 2024-02-04 23:44:22 +01:00
parent 58d3e23ff1
commit 36b5748844
2 changed files with 4 additions and 4 deletions

View File

@ -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
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+.

View File

@ -5,8 +5,8 @@
# If IMAP access is not used, config options starting with $imap do not need to
# be set and are ignored.
$debug = 0;
$delete_reports = 0;
$debug = $ENV{'PARSER_DEBUG'} // 0;
$delete_reports = $ENV{'PARSER_DELETE_REPORTS'} // 0;
$dbname = $ENV{'REPORT_DB_NAME'};
$dbuser = $ENV{'REPORT_DB_USER'};