mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-14 11:44:54 +08:00
33 lines
1,016 B
PHP
33 lines
1,016 B
PHP
<?php
|
|
|
|
class LoginProxyauthExamplePlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
{
|
|
const
|
|
NAME = 'Login PROXYAUTH',
|
|
VERSION = '1.0',
|
|
RELEASE = '2024-03-12',
|
|
REQUIRED = '2.35.3',
|
|
CATEGORY = 'Login',
|
|
DESCRIPTION = 'IMAP login using PROXYAUTH';
|
|
|
|
public function Init() : void
|
|
{
|
|
$this->addHook('imap.before-login', 'beforeLogin');
|
|
$this->addHook('imap.after-login', 'afterLogin');
|
|
}
|
|
|
|
public function beforeLogin(\RainLoop\Model\Account $oAccount, \MailSo\Net\NetClient $oImapClient, \MailSo\Net\ConnectSettings $oSettings) : void
|
|
{
|
|
if ('example.com' === $oAccount->Domain()->Name()) {
|
|
$oSettings->username = 'AdminUsername';
|
|
$oSettings->passphrase = 'AdminPassword';
|
|
}
|
|
}
|
|
|
|
public function afterLogin(\RainLoop\Model\Account $oAccount, \MailSo\Imap\ImapClient $oImapClient, bool $bSuccess)
|
|
{
|
|
if ($bSuccess && 'example.com' === $oAccount->Domain()->Name()) {
|
|
$oImapClient->SendRequestGetResponse('PROXYAUTH', array($oImapClient->EscapeString($oAccount->IncLogin())));
|
|
}
|
|
}
|
|
}
|