docker-dmarc-report/manifest/var/www/viewer/dmarcts-report-viewer-config.php
Robert Schumann 19f680a865 fix latest changes to viewer and parser
* new dependency postgres and PDO

	* php8 compatible
2022-08-10 00:08:41 +02:00

20 lines
601 B
PHP

<?php
// ####################################################################
// ### configuration ##################################################
// ####################################################################
$dbtype=getenv('REPORT_DB_TYPE');
$dbhost=getenv('REPORT_DB_HOST');
$dbport=getenv('REPORT_DB_PORT');
$dbname=getenv('REPORT_DB_NAME');
$dbuser=getenv('REPORT_DB_USER');
$dbpass=getenv('REPORT_DB_PASS');
$cssfile="default.css";
$default_hostlookup = 1; # 1=on 0=off (on is old behaviour )
$default_sort = 1; # 1=ASCdening 0=DESCending (ASCending is default behaviour )
?>