]> git.mxchange.org Git - mailer.git/blobdiff - inc/functions.php
German documentation updated
[mailer.git] / inc / functions.php
index 2da1f613620bcc3f94dab889d6e94d41d1f20dc4..9eedda3e4329d93a189c476efdcf34d40564bfb9 100644 (file)
@@ -1867,7 +1867,7 @@ function sendRawRequest ($host, $request) {
                // Use login data to proxy? (username at least!)
                if (getConfig('proxy_username') != '') {
                        // Add it as well
-                       $encodedAuth = base64_encode(compileRawCode(getConfig('proxy_username')) . getConfig('ENCRYPT_SEPERATOR') . compileRawCode(getConfig('proxy_password')));
+                       $encodedAuth = base64_encode(compileRawCode(getConfig('proxy_username')) . ':' . compileRawCode(getConfig('proxy_password')));
                        $proxyTunnel .= 'Proxy-Authorization: Basic ' . $encodedAuth . getConfig('HTTP_EOL');
                } // END - if