meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

linux:mail:dmarc:report [2024/11/19 07:16] – created niziaklinux:mail:dmarc:report [2024/11/19 07:39] (current) niziak
Line 8: Line 8:
   * a report viewer (see [[https://github.com/techsneeze/dmarcts-report-viewer/⁠]] by the same people)    * a report viewer (see [[https://github.com/techsneeze/dmarcts-report-viewer/⁠]] by the same people) 
 into a runnable docker image / microservice. into a runnable docker image / microservice.
 +
 +Example env settings for IMAP SSL:
 +
 +<file yaml docker-compose.yml>
 +    environment:
 +      - "PARSER_IMAP_SERVER=mail.example.com"
 +      - "PARSER_IMAP_PORT=993"
 +      - "PARSER_IMAP_TLS=0"
 +      - "PARSER_IMAP_SSL=1"
 +      - "PARSER_IMAP_USER=dmarc"
 +      - "PARSER_IMAP_PASS=secret"
 +      - "PARSER_IMAP_READ_FOLDER=INBOX"
 +      - "PARSER_IMAP_MOVE_FOLDER=DMARC-processed"
 +      - "PARSER_IMAP_MOVE_FOLDER_ERR=DMARC-error"
 +</file>