Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/techsneeze/dmarcts-report-parser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Bieling <john.bieling@gmx.de>2017-06-01 10:03:50 +0300
committerJohn Bieling <john.bieling@gmx.de>2017-06-01 10:03:50 +0300
commite38d5aa2341d54753bac1e755746ebd911359ee1 (patch)
treec0e15c917002674727ae511d5565fd44dc63bebd /README.md
parent7665b5f238df10e98a6c7a9d5e81f984f7f125d7 (diff)
Better description for delete_failed option
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index 1313450..d458615 100644
--- a/README.md
+++ b/README.md
@@ -59,6 +59,17 @@ $imapreadfolder = 'Inbox';
# If $imapmovefolder is set, processed IMAP messages
# will be moved (overruled by the --delete option!)
$imapmovefolder = 'Inbox.processed';
+
+# maximum size of XML files to store in database, long files can cause transaction aborts
+$maxsize_xml = 50000;
+# store XML as base64 encopded gzip in database (save space, harder usable)
+$compress_xml = 0;
+
+# if there was an error during file processing (message does not contain XML or ZIP parts,
+# or a database error) the parser reports an error and does not delete the file, even if
+# delete_reports is set (or --delete is given). Deletion can be enforced by delete_failed,
+# however not for database errors.
+$delete_failed = 0;
```
The script is looking for `dmarcts-report-parser.conf` in the current working directory. If not found it will look by the calling path. If neither is found than it will abort.