From bc10c2147645f191fc1fec4982d712f659ddd994 Mon Sep 17 00:00:00 2001 From: mdavis332 Date: Thu, 22 Jun 2017 15:23:37 -0500 Subject: [PATCH] Enable HTTPS Change URL to use httpS rather than http --- PapercutManagement/ServerCommandProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PapercutManagement/ServerCommandProxy.cs b/PapercutManagement/ServerCommandProxy.cs index 5f804a4..d862704 100644 --- a/PapercutManagement/ServerCommandProxy.cs +++ b/PapercutManagement/ServerCommandProxy.cs @@ -320,7 +320,7 @@ public ServerCommandProxy(string server, int port, string authToken) { // XML-RPC-v1 uses the non-generic form... hopefully it will be around for a while _proxy = (IServerCommandProxy)XmlRpcProxyGen.Create(typeof(IServerCommandProxy)); - _proxy.Url = "http://" + server + ":" + port + "/rpc/api/xmlrpc"; + _proxy.Url = "https://" + server + ":" + port + "/rpc/api/xmlrpc"; _authToken = authToken; }