37 lines
777 B
PHP
37 lines
777 B
PHP
<?php
|
|
/**
|
|
* Copyright 2014-2017 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* See the enclosed file COPYING for license information (GPL). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/gpl.
|
|
*
|
|
* @category Horde
|
|
* @copyright 2014-2017 Horde LLC
|
|
* @license http://www.horde.org/licenses/gpl GPL
|
|
* @package IMP
|
|
*/
|
|
|
|
/**
|
|
* MDN log entry.
|
|
*
|
|
* @author Michael Slusarz <slusarz@horde.org>
|
|
* @category Horde
|
|
* @copyright 2014-2017 Horde LLC
|
|
* @license http://www.horde.org/licenses/gpl GPL
|
|
* @package IMP
|
|
*/
|
|
class IMP_Maillog_Log_Mdn extends IMP_Maillog_Log_Base
|
|
{
|
|
/**
|
|
*/
|
|
protected $_action = 'mdn';
|
|
|
|
/**
|
|
*/
|
|
protected function _getMessage()
|
|
{
|
|
/* MDN doesn't have a displayable log message. */
|
|
}
|
|
|
|
}
|