mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-17 17:56:30 +00:00
pgsql is the wrong identifier (#29)
changed pgsql to Pg identifier in dmarc-report-parser.conf
This commit is contained in:
parent
73baf6f923
commit
0cc77fd254
@ -13,7 +13,7 @@ $dbuser = $ENV{'REPORT_DB_USER'};
|
||||
$dbpass = $ENV{'REPORT_DB_PASS'};
|
||||
$dbhost = $ENV{'REPORT_DB_HOST'}; # Set the hostname if we can't connect to the local socket.
|
||||
$dbport = $ENV{'REPORT_DB_PORT'} // 3306;
|
||||
$dbtype = $ENV{'REPORT_DB_TYPE'} // 'mysql';
|
||||
$dbtype = $ENV{'REPORT_DB_TYPE'} eq 'pgsql' ? 'Pg' : 'mysql';
|
||||
|
||||
if(exists $ENV{PARSER_IMAP_SERVER_WITH_PORT} && defined $ENV{PARSER_IMAP_SERVER_WITH_PORT}) {
|
||||
my @server_attr = split ':', $ENV{PARSER_IMAP_SERVER_WITH_PORT};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user