mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-17 09:45:58 +00:00
* alpine 3.5 to 3.13
* openssl upgrade, remove MimeInfo and SSL perl pkg hacks
* mysql client library upgrades (compatibility with 8)
* image size reduction 703 to 322 MB
* bump upstream sources for viewer and parser
* introduce tags (current and latest docker image 1.0, old image
still available as 0.5)
19 lines
567 B
PHP
19 lines
567 B
PHP
<?php
|
|
|
|
// ####################################################################
|
|
// ### configuration ##################################################
|
|
// ####################################################################
|
|
|
|
$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 )
|
|
|
|
?>
|