From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH] submit fireinfo profile via HTTPS Date: Sat, 09 Dec 2017 22:08:16 +0100 Message-ID: <20171209220816.2f7976b9.peter.mueller@link38.eu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1695440331163074840==" List-Id: --===============1695440331163074840== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Since HTTPS is now available for fireinfo.ipfire.org, clients should submit their profiles with transport encryption. Fixes #11529. Signed-off-by: Peter Müller --- src/sendprofile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sendprofile b/src/sendprofile index da480ce..b836567 100644 --- a/src/sendprofile +++ b/src/sendprofile @@ -44,7 +44,7 @@ log.addHandler(logging.StreamHandler(sys.stderr)) for handler in log.handlers: handler.setLevel(log_level) -PROFILE_URL = "http://fireinfo.ipfire.org/send/%(public_id)s" +PROFILE_URL = "https://fireinfo.ipfire.org/send/%(public_id)s" def get_upstream_proxy(): if not os.path.exists(PROXY_SETTINGS): -- 2.13.6 --===============1695440331163074840==--