Example #1
0
 /**
  * @param \MailSo\Mime\Message $oMessage
  */
 public function FilterBuildMessage(&$oMessage)
 {
     if ($oMessage instanceof \MailSo\Mime\Message) {
         $sIP = $this->Manager()->Actions()->Http()->GetClientIp(!!$this->Config()->Get('plugin', 'check_proxy', false));
         $oMessage->SetCustomHeader(\MailSo\Mime\Enumerations\Header::X_ORIGINATING_IP, $this->Manager()->Actions()->Http()->IsLocalhost($sIP) ? '127.0.0.1' : $sIP);
     }
 }