From 039b3b1cda6e70a614238a4b0bfbcb9515f5cfd0 Mon Sep 17 00:00:00 2001 From: Christian Herdtweck Date: Tue, 24 Jun 2025 13:55:00 +0200 Subject: [PATCH] Add dmarc quarantine to arnied helper --- src/arnied_wrapper.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/arnied_wrapper.py b/src/arnied_wrapper.py index c9f3683..a6c08dd 100644 --- a/src/arnied_wrapper.py +++ b/src/arnied_wrapper.py @@ -286,7 +286,7 @@ def wait_for_quarantine_processing(vm_session: Any = None, max_wait: int = 30) - raise RuntimeError(f"{cmd} returned {status} and output: {output}") n_sleep = 0 - for quarantine in ("spam", "attachment", "virus"): + for quarantine in ("spam", "attachment", "virus", "dmarc"): for subdir in ("q-in", "q-tmp"): try: full_dir = f"/datastore/quarantine/{quarantine}/{subdir}/" -- 1.7.1