2 Commits
2.0.1 ... 2.0.2

Author SHA1 Message Date
7c2bfda126 fix bug in quarantine whitelist 2022-04-25 14:21:35 +02:00
0b6724e656 change version to 2.0.2 2022-03-15 13:00:48 +01:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash
set -e
set -x
PYTHON=$(which python)
script_dir=$(dirname "$(readlink -f -- "$BASH_SOURCE")")

View File

@@ -27,7 +27,7 @@ __all__ = [
"whitelist",
"QuarantineMilter"]
__version__ = "2.0.1"
__version__ = "2.0.2"
from pyquarantine import _runtime_patches

View File

@@ -549,7 +549,7 @@ class Quarantine:
if not rcpts:
# all recipients whitelisted
return
milter.msginfo["rcpts"] = rcpts
milter.msginfo["rcpts"] = rcpts.copy()
if self._milter_action in ["REJECT", "DISCARD"]:
logger.info(f"quarantine message for {rcpts}")