Skip to content
This repository has been archived by the owner on Nov 14, 2019. It is now read-only.

Commit

Permalink
Verbose quiet by default
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed May 20, 2013
1 parent 791e44c commit 6aa6ef9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions class.cws.mbh.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @author Cr@zy
* @copyright 2013, Cr@zy
* @license GPL licensed
* @version 1.0
* @version 1.1
* @link https://github.com/crazy-max/CwsMailBounceHandler
*
*/
Expand Down Expand Up @@ -81,7 +81,7 @@ class CwsMailBounceHandler
* CwsMailBounceHandler version.
* @var string
*/
public $version = "1.0";
public $version = "1.1";

/**
* Mail host server.
Expand Down Expand Up @@ -202,10 +202,10 @@ class CwsMailBounceHandler

/**
* Control the debug output.
* default CWSMBH_VERBOSE_SIMPLE
* default CWSMBH_VERBOSE_QUIET
* @var int
*/
public $debug_verbose = CWSMBH_VERBOSE_SIMPLE;
public $debug_verbose = CWSMBH_VERBOSE_QUIET;

/**
* If true, it will disable the delete function.
Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

$cwsMailBounceHandler = new CwsMailBounceHandler();
$cwsMailBounceHandler->test_mode = true; // default false
$cwsMailBounceHandler->debug_verbose = CWSMBH_VERBOSE_DEBUG; // default CWSMBH_VERBOSE_SIMPLE
$cwsMailBounceHandler->debug_verbose = CWSMBH_VERBOSE_DEBUG; // default CWSMBH_VERBOSE_QUIET
//$cwsMailBounceHandler->purge = false; // default false
//$cwsMailBounceHandler->disable_delete = false; // default false
//$cwsMailBounceHandler->open_mode = CWSMBH_OPEN_MODE_IMAP; // default CWSMBH_OPEN_MODE_IMAP
Expand Down

0 comments on commit 6aa6ef9

Please sign in to comment.