From 96e0acb3b6b7e4047098293a5b577c6ecb211eb7 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Tue, 12 Feb 2019 09:33:57 -0500 Subject: [PATCH 1/2] use http:// instead of https:// --- COPYING | 4 ++-- README | 6 +++--- authres/__init__.py | 2 +- authres/__main__.py | 2 +- authres/arc.py | 2 +- authres/core.py | 2 +- authres/dkim_adsp.py | 2 +- authres/dkim_b.py | 4 ++-- authres/dmarc.py | 2 +- authres/rrvs.py | 2 +- authres/smime.py | 2 +- authres/tests | 2 +- authres/vbr.py | 2 +- setup.py | 2 +- 14 files changed, 18 insertions(+), 18 deletions(-) diff --git a/COPYING b/COPYING index d645695..62589ed 100644 --- a/COPYING +++ b/COPYING @@ -1,7 +1,7 @@ Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -193,7 +193,7 @@ you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/README b/README index 167c327..bdd5bfe 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ This module (authres) is designed to provide support for RFC 5451/7001, -originally http://tools.ietf.org/html/rfc5451 (and then -http://tools.ietf.org/html/rfc7001) and currently -http://tools.ietf.org/html/rfc7601, processing in Python. +originally https://tools.ietf.org/html/rfc5451 (and then +https://tools.ietf.org/html/rfc7001) and currently +https://tools.ietf.org/html/rfc7601, processing in Python. It also supports Authentication Results extensions: diff --git a/authres/__init__.py b/authres/__init__.py index bdc32ab..f6f322f 100644 --- a/authres/__init__.py +++ b/authres/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/authres/__main__.py b/authres/__main__.py index 027466c..a34aa44 100644 --- a/authres/__main__.py +++ b/authres/__main__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/authres/arc.py b/authres/arc.py index 3125147..e4bb01b 100644 --- a/authres/arc.py +++ b/authres/arc.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/authres/core.py b/authres/core.py index 9df06ec..9b664a6 100644 --- a/authres/core.py +++ b/authres/core.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/authres/dkim_adsp.py b/authres/dkim_adsp.py index 606a1cd..a1612ed 100644 --- a/authres/dkim_adsp.py +++ b/authres/dkim_adsp.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/authres/dkim_b.py b/authres/dkim_b.py index a5f925f..1bf3847 100644 --- a/authres/dkim_b.py +++ b/authres/dkim_b.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -49,7 +49,7 @@ class DKIMAuthenticationResult(authres.core.DKIMAuthenticationResult): def match_signature(self, signature_d, signature_b = None, strict = False): """Match authentication result against a DKIM signature by ``header.d`` and, if available, ``header.b``, per RFC 6008, section 4 - . If ``header.b`` is + . If ``header.b`` is absent from the authentication result, a non-strict match succeeds, whereas a strict match fails.""" diff --git a/authres/dmarc.py b/authres/dmarc.py index d3ff828..9ef27f6 100644 --- a/authres/dmarc.py +++ b/authres/dmarc.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/authres/rrvs.py b/authres/rrvs.py index 6376101..e084f54 100644 --- a/authres/rrvs.py +++ b/authres/rrvs.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/authres/smime.py b/authres/smime.py index ff233f7..8b1172f 100644 --- a/authres/smime.py +++ b/authres/smime.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/authres/tests b/authres/tests index 03a26bb..a55049e 100644 --- a/authres/tests +++ b/authres/tests @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/authres/vbr.py b/authres/vbr.py index f66aa8f..bcd15e6 100644 --- a/authres/vbr.py +++ b/authres/vbr.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/setup.py b/setup.py index 4cd5f08..9b16f2b 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, -- 2.20.1