submit fireinfo profile via HTTPS

Message ID 20171209220816.2f7976b9.peter.mueller@link38.eu
State Accepted
Headers
Series submit fireinfo profile via HTTPS |

Commit Message

Peter Müller Dec. 10, 2017, 8:08 a.m. UTC
  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 <peter.mueller@link38.eu>
---
 src/sendprofile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

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):