forked from pool/python-checkdmarc
Compare commits
16 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 8f0155ec6c | |||
| 421db440ef | |||
| d17539f62d | |||
| 40fda6a8de | |||
| a682f7b2ee | |||
| f6062c4cd6 | |||
| dda4139077 | |||
| d80bc72e10 | |||
| df08aca076 | |||
| 1c2acad959 | |||
| 375cb61256 | |||
| 7f3830c2e8 | |||
| a2263292c4 | |||
| ab93a451fd | |||
| fe304a6e17 | |||
| 2aa4f41f73 |
3
checkdmarc-5.10.12.tar.gz
Normal file
3
checkdmarc-5.10.12.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d2f8961f395205e1db3430066315c48c7362d9948e26c61c13e947f8429906ec
|
||||||
|
size 70229
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:6b073182963d64554c9ccc7e592d5a8ff3d126f3635093a5b0cfc3a291d946b7
|
|
||||||
size 62118
|
|
||||||
@@ -1,3 +1,69 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Sep 20 08:09:09 UTC 2025 - Martin Hauke <mardnh@gmx.de>
|
||||||
|
|
||||||
|
- Update to version 5.10.12
|
||||||
|
* Proper checking for the start of an SPF record.
|
||||||
|
* Improve error messages and fix typos (Close issue #182).
|
||||||
|
* Remove warning when no MX records are found.
|
||||||
|
- Update to version 5.10.8
|
||||||
|
* Return the proper error message when checking an SOA record
|
||||||
|
for a domain that exist.
|
||||||
|
- Update to version 5.10.7
|
||||||
|
* Set use_signals=False when using timeout decorator to allow it
|
||||||
|
to be used in multithreaded applications such as web
|
||||||
|
applications.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 12 18:38:37 UTC 2025 - Martin Hauke <mardnh@gmx.de>
|
||||||
|
|
||||||
|
- Update to version 5.10.6
|
||||||
|
* Fix BIMI certificate validation error generation.
|
||||||
|
* Add support for the avp bimi tag.
|
||||||
|
- Update to version 5.10.5
|
||||||
|
* Switch from DNS over UDP to DNS over TCP for DNSSEC and TLSA
|
||||||
|
queries.
|
||||||
|
- Update to version 5.9.3
|
||||||
|
* Clarify warnings for DMARC p=none and sp=none.
|
||||||
|
* Use a different warning if DMARC pct is set to 0.
|
||||||
|
* Add location to the JSON output for BIMI.
|
||||||
|
- Update to version 5.9.1
|
||||||
|
* Fix BIMI record parsing error introduced in 5.9.0.
|
||||||
|
- Update to version 5.9.0
|
||||||
|
Bug fixes:
|
||||||
|
* Remove zero-width characters from domain inputs.
|
||||||
|
* Add a warning when the DMARC record p or sp value is none.
|
||||||
|
* Evaluate DMARC when checking BIMI.
|
||||||
|
* Do lot show a BIMI certificate warning when the l tag is set
|
||||||
|
to "".
|
||||||
|
* Include warnings if a domain is using BIMI, but does not have
|
||||||
|
an enforced DMARC policy.
|
||||||
|
New features:
|
||||||
|
* Parsed SPF record details are now provided even if it uses
|
||||||
|
too many DNS lookups.
|
||||||
|
API changes:
|
||||||
|
* Require keyword arguments to be passed as keyword=value pairs
|
||||||
|
instead of positional arguments.
|
||||||
|
* Add the option ignore_too_many_lookups to
|
||||||
|
checkdmarc.spf.parse_spf_record()
|
||||||
|
+ This option will stop checkdmarc.spf.parse_spf_record() from
|
||||||
|
rasing exceptions related to too many DNS lookups, in
|
||||||
|
support of the new feature.
|
||||||
|
+ False by default to maintain backwards compatibility.
|
||||||
|
+ checkdmarc.spf.check_spf() uses this functionality to
|
||||||
|
support the new feature.
|
||||||
|
- Update to version 5.8.8
|
||||||
|
* Provide an easier to understand error message when a mark
|
||||||
|
certificate is not is not issued by a recognized Mark
|
||||||
|
Verifying Authority (MVA).
|
||||||
|
* Bug fix: failure to download a BIMI image is noted in the
|
||||||
|
certificate section instead of the image section.
|
||||||
|
- Update to version 5.8.7
|
||||||
|
* fix discrepencies on http_timeout usage.
|
||||||
|
* Fixing a bug in policy/subdomain policy check for parked
|
||||||
|
domains.
|
||||||
|
- Update patch:
|
||||||
|
* skip-network-tests.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 27 15:07:33 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
Fri Jun 27 15:07:33 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-checkdmarc
|
# spec file for package python-checkdmarc
|
||||||
#
|
#
|
||||||
# Copyright (c) 2025 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||||||
# Copyright (c) 2021-2025, Martin Hauke <mardnh@gmx.de>
|
# Copyright (c) 2021-2025, Martin Hauke <mardnh@gmx.de>
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
%bcond_without libalternatives
|
%bcond_without libalternatives
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-checkdmarc
|
Name: python-checkdmarc
|
||||||
Version: 5.8.6
|
Version: 5.10.12
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A Python module and command line parser for SPF and DMARC records
|
Summary: A Python module and command line parser for SPF and DMARC records
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@@ -63,8 +63,7 @@ BuildRequires: %{python_module xmltodict}
|
|||||||
A Python module and command line parser for SPF and DMARC records.
|
A Python module and command line parser for SPF and DMARC records.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n checkdmarc-%{version}
|
%autosetup -p1 -n checkdmarc-%{version}
|
||||||
%autopatch -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%pyproject_wheel
|
%pyproject_wheel
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
diff --git a/tests.py b/tests.py
|
diff --git a/tests.py b/tests.py
|
||||||
index fd22132..b684ecb 100755
|
index 9cfda48..cdaf4fe 100755
|
||||||
--- a/tests.py
|
--- a/tests.py
|
||||||
+++ b/tests.py
|
+++ b/tests.py
|
||||||
@@ -291,6 +291,7 @@ class Test(unittest.TestCase):
|
@@ -296,6 +296,7 @@ class Test(unittest.TestCase):
|
||||||
"{0} does not have any MX records".format(domain), results["warnings"]
|
results["warnings"],
|
||||||
)
|
)
|
||||||
|
|
||||||
+ @unittest.skipUnless(os.path.exists("/etc/resolv.conf"), "no network")
|
+ @unittest.skipUnless(os.path.exists("/etc/resolv.conf"), "no network")
|
||||||
|
|||||||
Reference in New Issue
Block a user