mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-29 16:15:55 +00:00
fix: more environment vars for parser, fixes #52
* also update source dates
This commit is contained in:
@@ -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'};
|
||||
|
||||
Reference in New Issue
Block a user