69 lines
1.3 KiB
PHP
69 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2012-2017 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* See the enclosed file LICENSE for license information (ASL). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/apache.
|
|
*
|
|
* @author Jason M. Felice <jason.m.felice@gmail.com>
|
|
* @category Horde
|
|
* @license http://www.horde.org/licenses/apache ASL
|
|
* @package Ingo
|
|
*/
|
|
|
|
/**
|
|
* Ingo_Storage_Spam is an object used to hold default spam-rule filtering
|
|
* information.
|
|
*
|
|
* @author Jason M. Felice <jason.m.felice@gmail.com>
|
|
* @category Horde
|
|
* @license http://www.horde.org/licenses/apache ASL
|
|
* @package Ingo
|
|
*/
|
|
class Ingo_Storage_Spam extends Ingo_Storage_Rule
|
|
{
|
|
/**
|
|
* The object type.
|
|
*
|
|
* @var integer
|
|
*/
|
|
protected $_obtype = Ingo_Storage::ACTION_SPAM;
|
|
|
|
/**
|
|
*/
|
|
protected $_folder = null;
|
|
|
|
/**
|
|
*/
|
|
protected $_level = 5;
|
|
|
|
/**
|
|
*/
|
|
public function setSpamFolder($folder)
|
|
{
|
|
$this->_folder = $folder;
|
|
}
|
|
|
|
/**
|
|
*/
|
|
public function setSpamLevel($level)
|
|
{
|
|
$this->_level = $level;
|
|
}
|
|
|
|
/**
|
|
*/
|
|
public function getSpamFolder()
|
|
{
|
|
return $this->_folder;
|
|
}
|
|
|
|
/**
|
|
*/
|
|
public function getSpamLevel()
|
|
{
|
|
return $this->_level;
|
|
}
|
|
|
|
}
|