mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-28 18:41:34 +08:00
38 lines
No EOL
931 B
PHP
38 lines
No EOL
931 B
PHP
<?php
|
||
|
||
class AddXOriginatingIpHeaderPlugin extends \RainLoop\Plugins\AbstractPlugin
|
||
{
|
||
public function Init()
|
||
{
|
||
$this->addHook('filter.build-message', 'FilterBuildMessage');
|
||
}
|
||
|
||
/**
|
||
* @param \MailSo\Mime\Message $oMessage
|
||
*/
|
||
public function FilterBuildMessage(&$oMessage)
|
||
{
|
||
if ($oMessage instanceof \MailSo\Mime\Message)
|
||
{
|
||
$oMessage->SetCustomHeader(
|
||
\MailSo\Mime\Enumerations\Header::X_ORIGINATING_IP,
|
||
$this->Manager()->Actions()->Http()->GetClientIp(
|
||
!!$this->Config()->Get('plugin', 'check_proxy', false))
|
||
);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @return array
|
||
*/
|
||
public function configMapping()
|
||
{
|
||
return array(
|
||
\RainLoop\Plugins\Property::NewInstance('check_proxy')
|
||
->SetLabel('Сheck User Proxy')
|
||
->SetType(\RainLoop\Enumerations\PluginPropertyType::BOOL)
|
||
->SetDescription('Enable, if you need to check proxy header')
|
||
->SetDefaultValue(false)
|
||
);
|
||
}
|
||
} |