change README.md

This commit is contained in:
2024-01-12 10:00:10 +01:00
parent 8a460d1c0d
commit 110ffd2080

View File

@@ -445,6 +445,13 @@ In this example it is assumed, that another milter (e.g. Amavisd or Rspamd) adds
```json ```json
{ {
"socket": "unix:/tmp/pyquarantine.sock", "socket": "unix:/tmp/pyquarantine.sock",
"storages": {
"orig": {
"type": "file",
"directory": "/mnt/data/incoming",
"original": true,
}
},
"rules": [ "rules": [
{ {
"name": "inbound", "name": "inbound",
@@ -456,9 +463,7 @@ In this example it is assumed, that another milter (e.g. Amavisd or Rspamd) adds
"name": "store_original", "name": "store_original",
"type": "store", "type": "store",
"options": { "options": {
"type": "file", "storage": "orig"
"directory": "/mnt/data/incoming",
"original": true,
} }
} }
] ]