diff --git a/README.md b/README.md index b0143f2..c4e5ff8 100644 --- a/README.md +++ b/README.md @@ -11,14 +11,16 @@ It fetches dmarc report mails regularly from an IMAP server, stores them into a 4. Access port 80 on the container (or 443) or put it behind a reverse proxy to view reports ``` docker pull gutmensch/dmarc-report -docker run -ti gutmensch/dmarc-report +docker run -e ... -ti gutmensch/dmarc-report ``` ## Versions for last build latest dmarcts report viewer: 2018-03-31 + dmarcts report parser: 2018-03-31 ## Sample docker compose / Environment variables +The variables should be self-explanatory. ``` dmarc-report: image: "gutmensch/dmarc-report:latest" diff --git a/manifest/etc/supervisor/conf.d/crond.conf b/manifest/etc/supervisor/conf.d/crond.conf index 2b08267..f1d580a 100644 --- a/manifest/etc/supervisor/conf.d/crond.conf +++ b/manifest/etc/supervisor/conf.d/crond.conf @@ -1,5 +1,5 @@ [program:cron] -command=crond -f -l 0 -L - -c /etc/cron.d +command=crond -f -L /dev/stdout -c /etc/cron.d autostart=true autorestart=true priority=10 diff --git a/manifest/var/www/viewer/dmarcts-report-viewer-config.php b/manifest/var/www/viewer/dmarcts-report-viewer-config.php index cf98b09..3016612 100644 --- a/manifest/var/www/viewer/dmarcts-report-viewer-config.php +++ b/manifest/var/www/viewer/dmarcts-report-viewer-config.php @@ -13,6 +13,6 @@ $dbport='3306'; $cssfile="default.css"; $default_lookup = 1; # 1=on 0=off (on is old behaviour ) -$default_sort = 1; # 1=ASCdening 0=DESCending (ASCending is default behaviour ) +$default_sort = 0; # 1=ASCdening 0=DESCending (ASCending is default behaviour ) ?>