mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 12:15:20 +08:00
26 lines
602 B
PHP
26 lines
602 B
PHP
|
<?php
|
||
|
|
||
|
class ChangeSmtpEhloMessagePlugin extends \RainLoop\Plugins\AbstractPlugin
|
||
|
{
|
||
|
public function Init()
|
||
|
{
|
||
|
$this->addHook('filter.smtp-credentials', 'FilterSmtpCredentials');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param \RainLoop\Account $oAccount
|
||
|
* @param array $aSmtpCredentials
|
||
|
*/
|
||
|
public function FilterSmtpCredentials($oAccount, &$aSmtpCredentials)
|
||
|
{
|
||
|
if ($oAccount instanceof \RainLoop\Account && \is_array($aSmtpCredentials))
|
||
|
{
|
||
|
// Default:
|
||
|
// $aSmtpCredentials['Ehlo'] = \MailSo\Smtp\SmtpClient::EhloHelper();
|
||
|
//
|
||
|
// or write your custom php
|
||
|
$aSmtpCredentials['Ehlo'] = 'localhost';
|
||
|
}
|
||
|
}
|
||
|
}
|