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

@@ -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'};