From 9f92729598ac844dbbd0b047e1d897ffec54da50 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Mon, 17 Oct 2016 16:07:21 -0700 Subject: [PATCH] Use https for pgpcontrol URLs ftp.isc.org supports https as well now, so may as well use it. --- signcontrol | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/signcontrol b/signcontrol index fbf3471..9e5ff55 100755 --- a/signcontrol +++ b/signcontrol @@ -6,6 +6,7 @@ # Changes from 1.8 -> 1.9 # -- Add use strict and explicitly import LOCK_EX. # -- Fix error reporting around lock files with PGP. +# -- Use https for pgpcontrol URLs. # # Changes from 1.6 -> 1.8 # -- Added support for GnuPG. @@ -84,9 +85,9 @@ my %force; $force{'Path'} = 'bounce-back'; $force{'From'} = 'YOUR_ADDRESS_AND_NAME'; $force{'Approved'} = 'ADDRESS_FOR_Approved_HEADER'; -$force{'X-Info'}='ftp://ftp.isc.org/pub/pgpcontrol/README.html' +$force{'X-Info'}='https://ftp.isc.org/pub/pgpcontrol/README.html' . "\n\t" - . 'ftp://ftp.isc.org/pub/pgpcontrol/README'; + . 'https://ftp.isc.org/pub/pgpcontrol/README'; # these headers are acceptable in input, or if not present then will be # created with the given value. None are enabled by default, because they