Skip to content

Commit

Permalink
Update sample config.
Browse files Browse the repository at this point in the history
  • Loading branch information
accolon committed Mar 4, 2024
1 parent 50c1f36 commit 71cd0b4
Showing 1 changed file with 41 additions and 5 deletions.
46 changes: 41 additions & 5 deletions data/conf/parsedmarc/config.sample.ini
Original file line number Diff line number Diff line change
@@ -1,27 +1,63 @@
# See docs at: domainaware.github.io/parsedmarc/#configuration-file
### ADJUST YOUR SETTINGS
########################################################
# Please read the docs to fit your needs:
# https://domainaware.github.io/parsedmarc/usage.html
########################################################
# IMPORTANT!
# You might need to keep the config up-to-date with
# parsedmarc's changes (see above).
#
# This is only an example file to get started easily.
# Project is NOT (automatically) keeping your
# custom config up-to-date.
########################################################

### ADJUST YOUR SETTINGS BELOW

[general]
save_aggregate = True
save_forensic = True

# nameservers to use (default is Cloudflare).
# Using internal DNS could speed up DNS resolution
# and hence also speed up email processing.
nameservers = 1.1.1.1,1.0.0.1

# Disable using reverse DNS and geolocation. Will speed up
# the processing noticably but also reduces the variety and
# precision of statistics.
# Can be useful for troubleshooting/testing.
offline = False

# For best troubleshooting, toggle both booleans below.
# Debug logging. (default)
debug = False
# Only report errors. (default)
silent = True

[imap]
# IMAP login
host = imap.example.com
port = 993
user = [email protected]
# % character in password must be replaced with %%
password = $uperSecure
ssl = True

# advanced
[mailbox]
# Using IDLE command to process when email arrives.
watch = True
# Delete emails after processing.
delete = False

# advanced advanced
# Folder where to look for reports and where to move processed ones.
reports_folder = INBOX
archive_folder = Processed

# When TRUE, it will NOT move or delete messages.
test = False

### NO EDIT REQURIED DOWN BELOW
########################################################
### NO EDIT REQUIRED BELOW
[elasticsearch]
hosts = elasticsearch:9200
ssl = False

0 comments on commit 71cd0b4

Please sign in to comment.