From 461a4bdb7c3d5b5765f5b30dbf1acbfa7c520674 Mon Sep 17 00:00:00 2001 From: Thomas Oettli Date: Thu, 30 Sep 2021 18:17:16 +0200 Subject: [PATCH] prepare to merge with project pymodmilter --- pyquarantine/{notifications.py => notify.py} | 0 pyquarantine/{storages.py => storage.py} | 0 pyquarantine/{whitelists.py => whitelist.py} | 0 test-pyquarantine | 9 --------- test-pyquarantine-milter | 9 --------- 5 files changed, 18 deletions(-) rename pyquarantine/{notifications.py => notify.py} (100%) rename pyquarantine/{storages.py => storage.py} (100%) rename pyquarantine/{whitelists.py => whitelist.py} (100%) delete mode 100755 test-pyquarantine delete mode 100755 test-pyquarantine-milter diff --git a/pyquarantine/notifications.py b/pyquarantine/notify.py similarity index 100% rename from pyquarantine/notifications.py rename to pyquarantine/notify.py diff --git a/pyquarantine/storages.py b/pyquarantine/storage.py similarity index 100% rename from pyquarantine/storages.py rename to pyquarantine/storage.py diff --git a/pyquarantine/whitelists.py b/pyquarantine/whitelist.py similarity index 100% rename from pyquarantine/whitelists.py rename to pyquarantine/whitelist.py diff --git a/test-pyquarantine b/test-pyquarantine deleted file mode 100755 index ecece9b..0000000 --- a/test-pyquarantine +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env python - -import sys -import pyquarantine.cli - -if __name__ == '__main__': - sys.exit( - pyquarantine.cli.main() - ) diff --git a/test-pyquarantine-milter b/test-pyquarantine-milter deleted file mode 100755 index 3ab34c7..0000000 --- a/test-pyquarantine-milter +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env python - -import sys -import pyquarantine.run - -if __name__ == '__main__': - sys.exit( - pyquarantine.run.main() - )