X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fhttp-functions.php;h=042e4b72e8bfb62cce0c88f9f5903abc7646a5a2;hb=987bf5583fce2696a1c6b2b72b123747b4cd4536;hp=ed9250603be4a0c9545114c00858350fa01cb015;hpb=373abf61c0a70b96c9c41d584a36a6a7584251ac;p=mailer.git diff --git a/inc/http-functions.php b/inc/http-functions.php index ed9250603b..042e4b72e8 100644 --- a/inc/http-functions.php +++ b/inc/http-functions.php @@ -10,13 +10,8 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : HTTP-relevante Funktionen * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2013 by Mailer Developer Team * + * Copyright (c) 2009 - 2015 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -343,8 +338,14 @@ function sendRawRequest ($host, $request, $allowOnlyHttpOkay = TRUE) { // Get resolver instance $resolver = new HostnameResolver(); - // Get proxy host - $proxyHost = compileRawCode(getProxyHost()); + // Default is no proxy + $proxyHost = NULL; + + // Is the configuration entry set? + if ((!isInstaller()) && (isConfigEntrySet('proxy_host'))) { + // Get proxy host + $proxyHost = compileRawCode(getProxyHost()); + } // END - if // Open connection if (isProxyUsed() === TRUE) { @@ -686,7 +687,7 @@ function extractHostnameFromUrl (&$script) { // Adds a HTTP header to array function addHttpHeader ($header) { // Send the header - //* DEBUG: */ logDebugMessage(__FUNCTION__ . ': header=' . $header); + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, ': header=' . $header); array_push($GLOBALS['http_header'], trim($header)); } @@ -942,7 +943,7 @@ function isHttpResponseStatusOkay ($response) { assert(is_array($response)); // Test it - $isOkay = ((isset($response['status'])) && ($response['status'] == 'OK') && (!empty($response['response']))); + $isOkay = ((isset($response['status'])) && ($response['status'] == 'OK')); // Return result return $isOkay;