1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
<?php
/**
* Copyright 2013-2016 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 2013-2016 Horde LLC
* @license http://www.horde.org/licenses/gpl GPL
* @package IMP
*/
/**
* Spam reporting driver utilizing a local binary.
*
* @author Michael Slusarz <slusarz@horde.org>
* @category Horde
* @copyright 2013-2016 Horde LLC
* @license http://www.horde.org/licenses/gpl GPL
* @package IMP
*/
class IMP_Spam_Program implements IMP_Spam_Base
{
/**
* Binary location.
*
* @var string
*/
protected $_binary;
/**
* Constructor.
*
* @param string $binary Binary location.
*/
public function __construct($binary)
{
$this->_binary = $binary;
}
/**
*/
public function report(IMP_Contents $contents, $action)
{
/* Use a pipe to write the message contents. This should be
* secure. */
$proc = proc_open(
$this->_binary,
array(
0 => array('pipe', 'r'),
1 => array('pipe', 'w'),
2 => array('pipe', 'w')
),
$pipes
);
if (!is_resource($proc)) {
Horde::log(sprintf('Cannot open spam reporting program: %s', $proc), 'ERR');
return false;
}
stream_copy_to_stream($contents->fullMessageText(array(
'stream' => true
)), $pipes[0]);
fclose($pipes[0]);
$stderr = '';
while (!feof($pipes[2])) {
$stderr .= fgets($pipes[2]);
}
fclose($pipes[2]);
if (!empty($stderr)) {
Horde::log(sprintf('Error reporting spam: %s', $stderr), 'ERR');
}
proc_close($proc);
return true;
}
}
|