| Current Path : /home/w/u/e/wuectly/www/03cbe/ |
| Current File : /home/w/u/e/wuectly/www/03cbe/log.tar |
log.php 0000604 00000003010 15245561265 0006037 0 ustar 00 <?php
/**
* @package Joomla.Plugin
* @subpackage System.log
*
* @copyright (C) 2007 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
/**
* Joomla! System Logging Plugin.
*
* @since 1.5
*/
class PlgSystemLog extends JPlugin
{
/**
* Called if user fails to be logged in.
*
* @param array $response Array of response data.
*
* @return void
*
* @since 1.5
*/
public function onUserLoginFailure($response)
{
$errorlog = array();
switch ($response['status'])
{
case JAuthentication::STATUS_SUCCESS:
$errorlog['status'] = $response['type'] . ' CANCELED: ';
$errorlog['comment'] = $response['error_message'];
break;
case JAuthentication::STATUS_FAILURE:
$errorlog['status'] = $response['type'] . ' FAILURE: ';
if ($this->params->get('log_username', 0))
{
$errorlog['comment'] = $response['error_message'] . ' ("' . $response['username'] . '")';
}
else
{
$errorlog['comment'] = $response['error_message'];
}
break;
default:
$errorlog['status'] = $response['type'] . ' UNKNOWN ERROR: ';
$errorlog['comment'] = $response['error_message'];
break;
}
JLog::addLogger(array(), JLog::INFO);
try
{
JLog::add($errorlog['comment'], JLog::INFO, $errorlog['status']);
}
catch (Exception $e)
{
// If the log file is unwriteable during login then we should not go to the error page
return;
}
}
}
log.xml 0000604 00000002236 15245561265 0006061 0 ustar 00 <?xml version="1.0" encoding="utf-8"?>
<extension version="3.1" type="plugin" group="system" method="upgrade">
<name>plg_system_log</name>
<author>Joomla! Project</author>
<creationDate>April 2007</creationDate>
<copyright>(C) 2007 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
<version>3.0.0</version>
<description>PLG_LOG_XML_DESCRIPTION</description>
<files>
<filename plugin="log">log.php</filename>
</files>
<languages>
<language tag="en-GB">en-GB.plg_system_log.ini</language>
<language tag="en-GB">en-GB.plg_system_log.sys.ini</language>
</languages>
<config>
<fields name="params">
<fieldset name="basic">
<field
name="log_username"
type="radio"
label="PLG_SYSTEM_LOG_FIELD_LOG_USERNAME_LABEL"
description="PLG_SYSTEM_LOG_FIELD_LOG_USERNAME_DESC"
class="btn-group btn-group-yesno"
default="0"
filter="integer"
>
<option value="1">JYES</option>
<option value="0">JNO</option>
</field>
</fieldset>
</fields>
</config>
</extension>
Psr/Log/LoggerInterface.php 0000604 00000006052 15245621732 0011610 0 ustar 00 <?php
namespace Psr\Log;
/**
* Describes a logger instance.
*
* The message MUST be a string or object implementing __toString().
*
* The message MAY contain placeholders in the form: {foo} where foo
* will be replaced by the context data in key "foo".
*
* The context array can contain arbitrary data. The only assumption that
* can be made by implementors is that if an Exception instance is given
* to produce a stack trace, it MUST be in a key named "exception".
*
* See https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md
* for the full interface specification.
*/
interface LoggerInterface
{
/**
* System is unusable.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function emergency($message, array $context = array());
/**
* Action must be taken immediately.
*
* Example: Entire website down, database unavailable, etc. This should
* trigger the SMS alerts and wake you up.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function alert($message, array $context = array());
/**
* Critical conditions.
*
* Example: Application component unavailable, unexpected exception.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function critical($message, array $context = array());
/**
* Runtime errors that do not require immediate action but should typically
* be logged and monitored.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function error($message, array $context = array());
/**
* Exceptional occurrences that are not errors.
*
* Example: Use of deprecated APIs, poor use of an API, undesirable things
* that are not necessarily wrong.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function warning($message, array $context = array());
/**
* Normal but significant events.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function notice($message, array $context = array());
/**
* Interesting events.
*
* Example: User logs in, SQL logs.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function info($message, array $context = array());
/**
* Detailed debug information.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function debug($message, array $context = array());
/**
* Logs with an arbitrary level.
*
* @param mixed $level
* @param string $message
* @param mixed[] $context
*
* @return void
*
* @throws \Psr\Log\InvalidArgumentException
*/
public function log($level, $message, array $context = array());
}
Psr/Log/LogLevel.php 0000604 00000000520 15245621732 0010253 0 ustar 00 <?php
namespace Psr\Log;
/**
* Describes log levels.
*/
class LogLevel
{
const EMERGENCY = 'emergency';
const ALERT = 'alert';
const CRITICAL = 'critical';
const ERROR = 'error';
const WARNING = 'warning';
const NOTICE = 'notice';
const INFO = 'info';
const DEBUG = 'debug';
}
Psr/Log/LoggerAwareInterface.php 0000604 00000000451 15245621732 0012565 0 ustar 00 <?php
namespace Psr\Log;
/**
* Describes a logger-aware instance.
*/
interface LoggerAwareInterface
{
/**
* Sets a logger instance on the object.
*
* @param LoggerInterface $logger
*
* @return void
*/
public function setLogger(LoggerInterface $logger);
}
Psr/Log/LoggerTrait.php 0000604 00000006527 15245621732 0011002 0 ustar 00 <?php
namespace Psr\Log;
/**
* This is a simple Logger trait that classes unable to extend AbstractLogger
* (because they extend another class, etc) can include.
*
* It simply delegates all log-level-specific methods to the `log` method to
* reduce boilerplate code that a simple Logger that does the same thing with
* messages regardless of the error level has to implement.
*/
trait LoggerTrait
{
/**
* System is unusable.
*
* @param string $message
* @param array $context
*
* @return void
*/
public function emergency($message, array $context = array())
{
$this->log(LogLevel::EMERGENCY, $message, $context);
}
/**
* Action must be taken immediately.
*
* Example: Entire website down, database unavailable, etc. This should
* trigger the SMS alerts and wake you up.
*
* @param string $message
* @param array $context
*
* @return void
*/
public function alert($message, array $context = array())
{
$this->log(LogLevel::ALERT, $message, $context);
}
/**
* Critical conditions.
*
* Example: Application component unavailable, unexpected exception.
*
* @param string $message
* @param array $context
*
* @return void
*/
public function critical($message, array $context = array())
{
$this->log(LogLevel::CRITICAL, $message, $context);
}
/**
* Runtime errors that do not require immediate action but should typically
* be logged and monitored.
*
* @param string $message
* @param array $context
*
* @return void
*/
public function error($message, array $context = array())
{
$this->log(LogLevel::ERROR, $message, $context);
}
/**
* Exceptional occurrences that are not errors.
*
* Example: Use of deprecated APIs, poor use of an API, undesirable things
* that are not necessarily wrong.
*
* @param string $message
* @param array $context
*
* @return void
*/
public function warning($message, array $context = array())
{
$this->log(LogLevel::WARNING, $message, $context);
}
/**
* Normal but significant events.
*
* @param string $message
* @param array $context
*
* @return void
*/
public function notice($message, array $context = array())
{
$this->log(LogLevel::NOTICE, $message, $context);
}
/**
* Interesting events.
*
* Example: User logs in, SQL logs.
*
* @param string $message
* @param array $context
*
* @return void
*/
public function info($message, array $context = array())
{
$this->log(LogLevel::INFO, $message, $context);
}
/**
* Detailed debug information.
*
* @param string $message
* @param array $context
*
* @return void
*/
public function debug($message, array $context = array())
{
$this->log(LogLevel::DEBUG, $message, $context);
}
/**
* Logs with an arbitrary level.
*
* @param mixed $level
* @param string $message
* @param array $context
*
* @return void
*
* @throws \Psr\Log\InvalidArgumentException
*/
abstract public function log($level, $message, array $context = array());
}
Psr/Log/InvalidArgumentException.php 0000604 00000000140 15245621732 0013510 0 ustar 00 <?php
namespace Psr\Log;
class InvalidArgumentException extends \InvalidArgumentException
{
}
Psr/Log/LoggerAwareTrait.php 0000604 00000000622 15245621732 0011750 0 ustar 00 <?php
namespace Psr\Log;
/**
* Basic Implementation of LoggerAwareInterface.
*/
trait LoggerAwareTrait
{
/**
* The logger instance.
*
* @var LoggerInterface|null
*/
protected $logger;
/**
* Sets a logger.
*
* @param LoggerInterface $logger
*/
public function setLogger(LoggerInterface $logger)
{
$this->logger = $logger;
}
}
Psr/Log/AbstractLogger.php 0000604 00000006040 15245621732 0011450 0 ustar 00 <?php
namespace Psr\Log;
/**
* This is a simple Logger implementation that other Loggers can inherit from.
*
* It simply delegates all log-level-specific methods to the `log` method to
* reduce boilerplate code that a simple Logger that does the same thing with
* messages regardless of the error level has to implement.
*/
abstract class AbstractLogger implements LoggerInterface
{
/**
* System is unusable.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function emergency($message, array $context = array())
{
$this->log(LogLevel::EMERGENCY, $message, $context);
}
/**
* Action must be taken immediately.
*
* Example: Entire website down, database unavailable, etc. This should
* trigger the SMS alerts and wake you up.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function alert($message, array $context = array())
{
$this->log(LogLevel::ALERT, $message, $context);
}
/**
* Critical conditions.
*
* Example: Application component unavailable, unexpected exception.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function critical($message, array $context = array())
{
$this->log(LogLevel::CRITICAL, $message, $context);
}
/**
* Runtime errors that do not require immediate action but should typically
* be logged and monitored.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function error($message, array $context = array())
{
$this->log(LogLevel::ERROR, $message, $context);
}
/**
* Exceptional occurrences that are not errors.
*
* Example: Use of deprecated APIs, poor use of an API, undesirable things
* that are not necessarily wrong.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function warning($message, array $context = array())
{
$this->log(LogLevel::WARNING, $message, $context);
}
/**
* Normal but significant events.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function notice($message, array $context = array())
{
$this->log(LogLevel::NOTICE, $message, $context);
}
/**
* Interesting events.
*
* Example: User logs in, SQL logs.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function info($message, array $context = array())
{
$this->log(LogLevel::INFO, $message, $context);
}
/**
* Detailed debug information.
*
* @param string $message
* @param mixed[] $context
*
* @return void
*/
public function debug($message, array $context = array())
{
$this->log(LogLevel::DEBUG, $message, $context);
}
}
Psr/Log/NullLogger.php 0000604 00000001303 15245621732 0010614 0 ustar 00 <?php
namespace Psr\Log;
/**
* This Logger can be used to avoid conditional log calls.
*
* Logging should always be optional, and if no logger is provided to your
* library creating a NullLogger instance to have something to throw logs at
* is a good way to avoid littering your code with `if ($this->logger) { }`
* blocks.
*/
class NullLogger extends AbstractLogger
{
/**
* Logs with an arbitrary level.
*
* @param mixed $level
* @param string $message
* @param array $context
*
* @return void
*
* @throws \Psr\Log\InvalidArgumentException
*/
public function log($level, $message, array $context = array())
{
// noop
}
}
LICENSE 0000604 00000002075 15245621732 0005560 0 ustar 00 Copyright (c) 2012 PHP Framework Interoperability Group
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
home/wuectly/www/administrator/components/com_mailjet/lib/tmp/log 0000604 00000102250 15245656066 0021431 0 ustar 00 ====================================================================================================
2014-09-24 18:22:51
RESPONSE
Mailjet_Api Object
(
[context:Mailjet_Api:private] => Mailjet_Api_Strategy_V1 Object
(
[version] => 0.1
[output] => json
[secure] =>
[debug] => 0
[apiKey] => 6363e9d3b0fbcc689c98e18a1a0ba9b5
[secretKey] => ea3818da6ef29051a081297d4e4ea6cb
[apiUrl] => http://api.mailjet.com/0.1
[_method] => listsAll
[_request] => GET
[call_url] => http://api.mailjet.com/0.1/listsAll/?output=json&limit=1
[_request_post] =>
[_response_code] => 200
[_response] => stdClass Object
(
[lists] => Array
(
[0] => stdClass Object
(
[id] => 830045
[name] => bugise2794a59
[label] => Bug issue 562
[created_at] => 1402918673
[subscribers] => 201
[sent] => 0
[open] => 0
[click] => 0
[bounce] => 0
[blocked] => 400
[spam] => 0
[unsub] => 0
[last_activity] => 1403006589
[handled] => 1
)
)
[status] => OK
)
)
[version] => 0.1
[apiUrl] => in.mailjet.com
)
====================================================================================================
2014-09-24 18:02:39
RESPONSE
Mailjet_Api Object
(
[context:Mailjet_Api:private] => Mailjet_Api_Strategy_V1 Object
(
[version] => 0.1
[output] => json
[secure] =>
[debug] => 0
[apiKey] => 6363e9d3b0fbcc689c98e18a1a0ba9b5
[secretKey] => ea3818da6ef29051a081297d4e4ea6cb
[apiUrl] => http://api.mailjet.com/0.1
[_method] => listsAll
[_request] => GET
[call_url] => http://api.mailjet.com/0.1/listsAll/?output=json&limit=1
[_request_post] =>
[_response_code] => 200
[_response] => stdClass Object
(
[lists] => Array
(
[0] => stdClass Object
(
[id] => 830045
[name] => bugise2794a59
[label] => Bug issue 562
[created_at] => 1402918673
[subscribers] => 201
[sent] => 0
[open] => 0
[click] => 0
[bounce] => 0
[blocked] => 400
[spam] => 0
[unsub] => 0
[last_activity] => 1403006589
[handled] => 1
)
)
[status] => OK
)
)
[version] => 0.1
[apiUrl] => in.mailjet.com
)
====================================================================================================
2014-09-24 18:02:06
RESPONSE
Mailjet_Api Object
(
[context:Mailjet_Api:private] => Mailjet_Api_Strategy_V3 Object
(
[_apiKey:Mailjet_Api_V3:private] => 7ee8e423df320c5c3ecb314ad45c0b19
[_secretKey:Mailjet_Api_V3:private] => 112f3d6bd2e3059db345a35cd2dfe5bb
[_cache:Mailjet_Api_V3:private] => 0
[_apiUrl:Mailjet_Api_V3:private] => http://api.mailjet.com/v3/REST/
[_version:Mailjet_Api_V3:private] => REST
[_debug:Mailjet_Api_V3:private] =>
[_debug_info:Mailjet_Api_V3:private] =>
[_buffer:Mailjet_Api_V3:private] =>
[_method:Mailjet_Api_V3:private] =>
[_info:Mailjet_Api_V3:private] => Array
(
[url] => http://api.mailjet.com/v3/REST/apitoken
[content_type] => text/html; charset=utf-8
[http_code] => 201
[header_size] => 184
[request_size] => 405
[filetime] => -1
[ssl_verify_result] => 0
[redirect_count] => 0
[total_time] => 0.075868
[namelookup_time] => 3.1E-5
[connect_time] => 0.031974
[pretransfer_time] => 0.032039
[size_upload] => 153
[size_download] => 643
[speed_download] => 8475
[speed_upload] => 2016
[download_content_length] => 643
[upload_content_length] => 153
[starttransfer_time] => 0.075834
[redirect_time] => 0
[certinfo] => Array
(
)
[primary_ip] => 5.135.120.255
[primary_port] => 80
[local_ip] => 193.107.71.62
[local_port] => 47087
[redirect_url] =>
)
[_curl_handle:Mailjet_Api_V3:private] =>
[_log_allowed:protected] =>
[_log:protected] =>
[_log_once:protected] => 1
[_extra_err:protected] =>
[_log_path:protected] =>
[_akid] =>
[_response_code] => 201
)
[version] =>
[apiUrl] => in-v3.mailjet.com
)
====================================================================================================
2014-09-24 17:39:54
RESPONSE
Mailjet_Api Object
(
[context:Mailjet_Api:private] => Mailjet_Api_Strategy_V1 Object
(
[version] => 0.1
[output] => json
[secure] =>
[debug] => 0
[apiKey] => 709aa262a03f2279127672eadd59dc50
[secretKey] => bbd975cfe881a7cd349726049b2b022d
[apiUrl] => http://api.mailjet.com/0.1
[_method] => listsAll
[_request] => GET
[call_url] => http://api.mailjet.com/0.1/listsAll/?output=json&limit=1
[_request_post] =>
[_response_code] => 200
[_response] => stdClass Object
(
[lists] => Array
(
[0] => stdClass Object
(
[id] => 833189
[name] => test9132f737
[label] => Test
[created_at] => 1403004329
[subscribers] => 99
[sent] => 0
[open] => 0
[click] => 0
[bounce] => 0
[blocked] => 0
[spam] => 0
[unsub] => 0
[last_activity] =>
[handled] => 1
)
)
[status] => OK
)
)
[version] => 0.1
[apiUrl] => in.mailjet.com
)
====================================================================================================
2014-09-24 17:26:25
RESPONSE
Mailjet_Api Object
(
[context:Mailjet_Api:private] => Mailjet_Api_Strategy_V1 Object
(
[version] => 0.1
[output] => json
[secure] =>
[debug] => 0
[apiKey] => 6363e9d3b0fbcc689c98e18a1a0ba9b5
[secretKey] => ea3818da6ef29051a081297d4e4ea6cb
[apiUrl] => http://api.mailjet.com/0.1
[_method] => listsAll
[_request] => GET
[call_url] => http://api.mailjet.com/0.1/listsAll/?output=json&limit=1
[_request_post] =>
[_response_code] => 200
[_response] => stdClass Object
(
[lists] => Array
(
[0] => stdClass Object
(
[id] => 830045
[name] => bugise2794a59
[label] => Bug issue 562
[created_at] => 1402918673
[subscribers] => 201
[sent] => 0
[open] => 0
[click] => 0
[bounce] => 0
[blocked] => 400
[spam] => 0
[unsub] => 0
[last_activity] => 1403006589
[handled] => 1
)
)
[status] => OK
)
)
[version] => 0.1
[apiUrl] => in.mailjet.com
)
====================================================================================================
2014-09-24 17:26:09
RESPONSE
Mailjet_Api Object
(
[context:Mailjet_Api:private] => Mailjet_Api_Strategy_V1 Object
(
[version] => 0.1
[output] => json
[secure] =>
[debug] => 0
[apiKey] => 709aa262a03f2279127672eadd59dc50
[secretKey] => bbd975cfe881a7cd349726049b2b022d
[apiUrl] => http://api.mailjet.com/0.1
[_method] => listsAll
[_request] => GET
[call_url] => http://api.mailjet.com/0.1/listsAll/?output=json&limit=1
[_request_post] =>
[_response_code] => 200
[_response] => stdClass Object
(
[lists] => Array
(
[0] => stdClass Object
(
[id] => 833189
[name] => test9132f737
[label] => Test
[created_at] => 1403004329
[subscribers] => 99
[sent] => 0
[open] => 0
[click] => 0
[bounce] => 0
[blocked] => 0
[spam] => 0
[unsub] => 0
[last_activity] =>
[handled] => 1
)
)
[status] => OK
)
)
[version] => 0.1
[apiUrl] => in.mailjet.com
)
====================================================================================================
2014-09-24 17:25:55
RESPONSE
Mailjet_Api Object
(
[context:Mailjet_Api:private] => Mailjet_Api_Strategy_V1 Object
(
[version] => 0.1
[output] => json
[secure] =>
[debug] => 0
[apiKey] => 709aa262a03f2279127672eadd59dc50
[secretKey] => bbd975cfe881a7cd349726049b2b022d
[apiUrl] => http://api.mailjet.com/0.1
[_method] => listsAll
[_request] => GET
[call_url] => http://api.mailjet.com/0.1/listsAll/?output=json&limit=1
[_request_post] =>
[_response_code] => 200
[_response] => stdClass Object
(
[lists] => Array
(
[0] => stdClass Object
(
[id] => 833189
[name] => test9132f737
[label] => Test
[created_at] => 1403004329
[subscribers] => 99
[sent] => 0
[open] => 0
[click] => 0
[bounce] => 0
[blocked] => 0
[spam] => 0
[unsub] => 0
[last_activity] =>
[handled] => 1
)
)
[status] => OK
)
)
[version] => 0.1
[apiUrl] => in.mailjet.com
)
====================================================================================================
2014-09-24 16:34:26
RESPONSE
Mailjet_Api Object
(
[context:Mailjet_Api:private] => Mailjet_Api_Strategy_V3 Object
(
[_apiKey:Mailjet_Api_V3:private] => 7ee8e423df320c5c3ecb314ad45c0b19
[_secretKey:Mailjet_Api_V3:private] => 112f3d6bd2e3059db345a35cd2dfe5bb
[_cache:Mailjet_Api_V3:private] => 0
[_apiUrl:Mailjet_Api_V3:private] => http://api.mailjet.com/v3/REST/
[_version:Mailjet_Api_V3:private] => REST
[_debug:Mailjet_Api_V3:private] =>
[_debug_info:Mailjet_Api_V3:private] =>
[_buffer:Mailjet_Api_V3:private] =>
[_method:Mailjet_Api_V3:private] =>
[_info:Mailjet_Api_V3:private] => Array
(
[url] => http://api.mailjet.com/v3/REST/apitoken
[content_type] => text/html; charset=utf-8
[http_code] => 201
[header_size] => 184
[request_size] => 405
[filetime] => -1
[ssl_verify_result] => 0
[redirect_count] => 0
[total_time] => 0.0752
[namelookup_time] => 3.5E-5
[connect_time] => 0.03224
[pretransfer_time] => 0.03231
[size_upload] => 153
[size_download] => 643
[speed_download] => 8550
[speed_upload] => 2034
[download_content_length] => 643
[upload_content_length] => 153
[starttransfer_time] => 0.075164
[redirect_time] => 0
[certinfo] => Array
(
)
[primary_ip] => 5.135.120.255
[primary_port] => 80
[local_ip] => 193.107.71.62
[local_port] => 41085
[redirect_url] =>
)
[_curl_handle:Mailjet_Api_V3:private] =>
[_log_allowed:protected] =>
[_log:protected] =>
[_log_once:protected] => 1
[_extra_err:protected] =>
[_log_path:protected] =>
[_akid] =>
[_response_code] => 201
)
[version] =>
[apiUrl] => in-v3.mailjet.com
)
====================================================================================================
2014-09-24 16:19:47
RESPONSE
Mailjet_Api Object
(
[context:Mailjet_Api:private] => Mailjet_Api_Strategy_V3 Object
(
[_apiKey:Mailjet_Api_V3:private] => 7ee8e423df320c5c3ecb314ad45c0b19
[_secretKey:Mailjet_Api_V3:private] => 112f3d6bd2e3059db345a35cd2dfe5bb
[_cache:Mailjet_Api_V3:private] => 0
[_apiUrl:Mailjet_Api_V3:private] => http://api.mailjet.com/v3/REST/
[_version:Mailjet_Api_V3:private] => REST
[_debug:Mailjet_Api_V3:private] =>
[_debug_info:Mailjet_Api_V3:private] =>
[_buffer:Mailjet_Api_V3:private] =>
[_method:Mailjet_Api_V3:private] =>
[_info:Mailjet_Api_V3:private] => Array
(
[url] => http://api.mailjet.com/v3/REST/apitoken
[content_type] => text/html; charset=utf-8
[http_code] => 201
[header_size] => 184
[request_size] => 405
[filetime] => -1
[ssl_verify_result] => 0
[redirect_count] => 0
[total_time] => 0.077033
[namelookup_time] => 3.0E-5
[connect_time] => 0.032484
[pretransfer_time] => 0.032563
[size_upload] => 153
[size_download] => 643
[speed_download] => 8347
[speed_upload] => 1986
[download_content_length] => 643
[upload_content_length] => 153
[starttransfer_time] => 0.076998
[redirect_time] => 0
[certinfo] => Array
(
)
[primary_ip] => 5.135.120.255
[primary_port] => 80
[local_ip] => 193.107.71.62
[local_port] => 39552
[redirect_url] =>
)
[_curl_handle:Mailjet_Api_V3:private] =>
[_log_allowed:protected] =>
[_log:protected] =>
[_log_once:protected] => 1
[_extra_err:protected] =>
[_log_path:protected] =>
[_akid] =>
[_response_code] => 201
)
[version] =>
[apiUrl] => http://api.mailjet.com/v3/REST/
)
====================================================================================================
2014-09-24 14:40:57
RESPONSE
Mailjet_Api Object
(
[context:Mailjet_Api:private] => Mailjet_Api_Strategy_V3 Object
(
[_apiKey:Mailjet_Api_V3:private] => 7ee8e423df320c5c3ecb314ad45c0b19
[_secretKey:Mailjet_Api_V3:private] => 112f3d6bd2e3059db345a35cd2dfe5bb
[_cache:Mailjet_Api_V3:private] => 0
[_apiUrl:Mailjet_Api_V3:private] => http://api.mailjet.com/v3/REST/
[_version:Mailjet_Api_V3:private] => REST
[_debug:Mailjet_Api_V3:private] =>
[_debug_info:Mailjet_Api_V3:private] =>
[_buffer:Mailjet_Api_V3:private] =>
[_method:Mailjet_Api_V3:private] =>
[_info:Mailjet_Api_V3:private] => Array
(
[url] => http://api.mailjet.com/v3/REST/apitoken
[content_type] => text/html; charset=utf-8
[http_code] => 201
[header_size] => 184
[request_size] => 405
[filetime] => -1
[ssl_verify_result] => 0
[redirect_count] => 0
[total_time] => 0.383548
[namelookup_time] => 2.9E-5
[connect_time] => 0.031834
[pretransfer_time] => 0.031893
[size_upload] => 153
[size_download] => 643
[speed_download] => 1676
[speed_upload] => 398
[download_content_length] => 643
[upload_content_length] => 153
[starttransfer_time] => 0.383513
[redirect_time] => 0
[certinfo] => Array
(
)
[primary_ip] => 5.135.46.177
[primary_port] => 80
[local_ip] => 193.107.71.62
[local_port] => 53699
[redirect_url] =>
)
[_curl_handle:Mailjet_Api_V3:private] =>
[_log_allowed:protected] =>
[_log:protected] =>
[_log_once:protected] => 1
[_extra_err:protected] =>
[_log_path:protected] =>
[_akid] =>
[_response_code] => 201
)
[version] =>
)
====================================================================================================
2014-09-24 13:55:44
RESPONSE
MailjetApi Object
(
[version] => REST
[output] => json
[secure] => 1
[debug] => 0
[apiKey] => 7ee8e423df320c5c3ecb314ad45c0b19
[secretKey] => 112f3d6bd2e3059db345a35cd2dfe5bb
[apiUrl] => https://api.mailjet.com/v3/REST
[_method] => apitoken
[_request] => POST
[call_url] => https://api.mailjet.com/v3/REST/apitoken/?output=json
[_request_post] => Array
(
[AllowedAccess] => campaigns,contacts,stats,pricing,account,reports
[APIKeyALT] => 7ee8e423df320c5c3ecb314ad45c0b19
[TokenType] => iframe
[IsActive] => 1
)
[_response_code] => 201
[_response] => stdClass Object
(
[Count] => 1
[Data] => Array
(
[0] => stdClass Object
(
[AllowedAccess] => campaigns,contacts,stats,pricing,account,reports
[APIKeyID] => 176517
[CatchedIp] => 172.16.0.11
[CreatedAt] => 2014-09-24T10:55:44Z
[FirstUsedAt] =>
[ID] => 1531814
[IsActive] => 1
[Lang] =>
[LastUsedAt] =>
[SentData] =>
[Timezone] =>
[Token] => E2A2E8E4155971C09461056DB4A2E84A88641773F890CBA6D7E4940EFFE4E0CED009FF388848B7E68C89C340F0A39B7C22273723A53A2CF57E6CEFE34173D2B4970DE3C56F369116250864C4773A02E548A9583A393C896E58453FDEA6BA76E5E0B3DFDC4E6A165CBDE3D5EB1B7702F6559323ABE83B876F9AED3CB4C7BA087
[TokenType] => iframe
[ValidFor] => 0
)
)
[Total] => 1
)
)
====================================================================================================
2014-09-24 13:55:37
RESPONSE
MailjetApi Object
(
[version] => REST
[output] => json
[secure] => 1
[debug] => 0
[apiKey] => 7ee8e423df320c5c3ecb314ad45c0b19
[secretKey] => 112f3d6bd2e3059db345a35cd2dfe5bb
[apiUrl] => https://api.mailjet.com/v3/REST
[_method] => apitoken
[_request] => POST
[call_url] => https://api.mailjet.com/v3/REST/apitoken/?output=json
[_request_post] => Array
(
[AllowedAccess] => campaigns,contacts,stats,pricing,account,reports
[APIKeyALT] => 7ee8e423df320c5c3ecb314ad45c0b19
[TokenType] => iframe
[IsActive] => 1
)
[_response_code] => 201
[_response] => stdClass Object
(
[Count] => 1
[Data] => Array
(
[0] => stdClass Object
(
[AllowedAccess] => campaigns,contacts,stats,pricing,account,reports
[APIKeyID] => 176517
[CatchedIp] => 172.16.0.11
[CreatedAt] => 2014-09-24T10:55:37Z
[FirstUsedAt] =>
[ID] => 1531813
[IsActive] => 1
[Lang] =>
[LastUsedAt] =>
[SentData] =>
[Timezone] =>
[Token] => FDBE4EAB1136F8B5CE0CC150D2711138180B16C46B51E6C99B873B063038E373C54686FAFABB85D3F6FED5A02B881C4649A017D30787A3D1BDCD2976CE681FAC75E67FDFE2D5D49740453999BC10FB5A92358730733F15ADF153C1CDEADCF5DC8A3A67BC8D8665921DBEBDAED395F1C56AD056332572BB5E6F48B9887D40999
[TokenType] => iframe
[ValidFor] => 0
)
)
[Total] => 1
)
)
====================================================================================================
2014-09-23 18:23:25
RESPONSE
MailjetApi Object
(
[version] => REST
[output] => json
[secure] => 1
[debug] => 0
[apiKey] => 7ee8e423df320c5c3ecb314ad45c0b19
[secretKey] => 112f3d6bd2e3059db345a35cd2dfe5bb
[apiUrl] => https://api.mailjet.com/v3/REST
[_method] => apitoken
[_request] => POST
[call_url] => https://api.mailjet.com/v3/REST/apitoken/?output=json
[_request_post] => Array
(
[AllowedAccess] => campaigns,contacts,stats,pricing,account,reports
[APIKeyALT] => 7ee8e423df320c5c3ecb314ad45c0b19
[TokenType] => iframe
[IsActive] => 1
)
[_response_code] => 201
[_response] => stdClass Object
(
[Count] => 1
[Data] => Array
(
[0] => stdClass Object
(
[AllowedAccess] => campaigns,contacts,stats,pricing,account,reports
[APIKeyID] => 176517
[CatchedIp] => 172.16.0.11
[CreatedAt] => 2014-09-23T15:23:25Z
[FirstUsedAt] =>
[ID] => 1531747
[IsActive] => 1
[Lang] =>
[LastUsedAt] =>
[SentData] =>
[Timezone] =>
[Token] => 31780227E49D32BD990E9A4B129DF4E8A3CAAA0228336F28CF14D9EC57EB1FCED69A17D464F93374298496DCF7412B28FBFA1ADE1E4262C6DC6B1326B0EAD0ADC3517AC082CCF2F90B25E5006F38C9E50551E9385FA1430A1D2E423E67658245FF5AA97DBDFC3A5671DE309656D002EA6066A1F8A42134A689ADCCC1964165D
[TokenType] => iframe
[ValidFor] => 0
)
)
[Total] => 1
)
)
====================================================================================================
2014-09-23 12:38:08
RESPONSE
MailjetApi Object
(
[version] => REST
[output] => json
[secure] => 1
[debug] => 0
[apiKey] => ff504f5e4e6fb57e9747fc09d7a7c6ff
[secretKey] => fa24b97126e6371d0e2c6c6266bc7f3b
[apiUrl] => https://api.mailjet.com/v3/REST
[_method] => apitoken
[_request] => POST
[call_url] => https://api.mailjet.com/v3/REST/apitoken/?output=json
[_request_post] => Array
(
[AllowedAccess] => campaigns,contacts,stats,pricing,account,reports
[APIKeyALT] => ff504f5e4e6fb57e9747fc09d7a7c6ff
[TokenType] => iframe
[IsActive] => 1
)
[_response_code] => 201
[_response] => stdClass Object
(
[Count] => 1
[Data] => Array
(
[0] => stdClass Object
(
[AllowedAccess] => campaigns,contacts,stats,pricing,account,reports
[APIKeyID] => 128127
[CatchedIp] => 172.16.0.11
[CreatedAt] => 2014-09-23T09:38:08Z
[FirstUsedAt] =>
[ID] => 1531715
[IsActive] => 1
[Lang] =>
[LastUsedAt] =>
[SentData] =>
[Timezone] =>
[Token] => C7470DD9910D1A4885F2E0669861165180EEE5C18ABBD23956E27E9FC14F356BB495B8D9F9E9636965404732A6675C986982832E4DCA6014B6600364286E0678B5392A1D5E30EDA650F75A8607D28257B023E2166EEACF1868337B1B218C952D997185A5128F5C80F01EA446EE63E6430C1AFFC0F2C4BBA9EA374B2A16ADDF4
[TokenType] => iframe
[ValidFor] => 0
)
)
[Total] => 1
)
)
====================================================================================================
2014-09-23 12:26:27
RESPONSE
MailjetApi Object
(
[version] => REST
[output] => json
[secure] => 1
[debug] => 0
[apiKey] => ff504f5e4e6fb57e9747fc09d7a7c6ff
[secretKey] => fa24b97126e6371d0e2c6c6266bc7f3b
[apiUrl] => https://api.mailjet.com/v3/REST
[_method] => apitoken
[_request] => POST
[call_url] => https://api.mailjet.com/v3/REST/apitoken/?output=json
[_request_post] => Array
(
[AllowedAccess] => campaigns,contacts,stats,pricing,account,reports
[APIKeyALT] => ff504f5e4e6fb57e9747fc09d7a7c6ff
[TokenType] => iframe
[IsActive] => 1
)
[_response_code] => 201
[_response] => stdClass Object
(
[Count] => 1
[Data] => Array
(
[0] => stdClass Object
(
[AllowedAccess] => campaigns,contacts,stats,pricing,account,reports
[APIKeyID] => 128127
[CatchedIp] => 172.16.0.12
[CreatedAt] => 2014-09-23T09:26:27Z
[FirstUsedAt] =>
[ID] => 1531706
[IsActive] => 1
[Lang] =>
[LastUsedAt] =>
[SentData] =>
[Timezone] =>
[Token] => 255B5D469EF20EECB4C56EF1D5CEADE84E0DC6E4B05AD137B8D7AE91428DDC7547C9C14573B78830BDF1911C4567115EAB21D2E524BFC7E5702601FB9E16DFF7A272A9E5C71D7BDE0B584132FC3ED6AFA6133BFE475B39A157FD2A21B663BDE3EF9D9D3904D32299949CEB4971C68EE337638A4EFAADE99ACE71DCD4F286DE8
[TokenType] => iframe
[ValidFor] => 0
)
)
[Total] => 1
)
)
====================================================================================================
2014-09-19 17:23:02
RESPONSE
MailjetApi Object
(
[version] => REST
[output] => json
[secure] => 1
[debug] => 0
[apiKey] => ff504f5e4e6fb57e9747fc09d7a7c6ff
[secretKey] => fa24b97126e6371d0e2c6c6266bc7f3b
[apiUrl] => https://api.mailjet.com/v3/REST
[_method] => apitoken
[_request] => POST
[call_url] => https://api.mailjet.com/v3/REST/apitoken/?output=json
[_request_post] => Array
(
[AllowedAccess] => campaigns,contacts,stats,pricing,account,reports
[APIKeyALT] => ff504f5e4e6fb57e9747fc09d7a7c6ff
[TokenType] => iframe
[IsActive] => 1
)
[_response_code] => 201
[_response] => stdClass Object
(
[Count] => 1
[Data] => Array
(
[0] => stdClass Object
(
[AllowedAccess] => campaigns,contacts,stats,pricing,account,reports
[APIKeyID] => 128127
[CatchedIp] => 172.16.0.12
[CreatedAt] => 2014-09-19T14:23:02Z
[FirstUsedAt] =>
[ID] => 1531571
[IsActive] => 1
[Lang] =>
[LastUsedAt] =>
[SentData] =>
[Timezone] =>
[Token] => FACB508DBC7E98D9D08F66A59B0C560CFB78AD000B724981284A7612AA773B31E3EFFAFEB3308A37336D24F24FD8CD88CD06A2A8A3C9C04DCD2A5C4658626E91F4874F180DF513EC0B853988CFCC708F4F02283D7230E69A6097C8EE243A0B9D2BC0E31ACC373B57D0E2441A6684CA2129139DED2322FB9E417EFA1DF60588A
[TokenType] => iframe
[ValidFor] => 0
)
)
[Total] => 1
)
)