snappymail/plugins/auto-domain-grab/index.php

79 lines
2.3 KiB
PHP
Raw Normal View History

2015-11-19 01:25:36 +08:00
<?php
2015-11-19 01:25:36 +08:00
/**
* This plug-in automatically detects the IMAP and SMTP settings by extracting them from the email address itself.
* For example, user inputs: "info@example.com"
* This plugin sets the IMAP and SMTP host to "example.com" upon login, and then connects to it.
*
* Based on:
* https://github.com/RainLoop/rainloop-webmail/blob/master/plugins/override-smtp-credentials/index.php
2020-03-11 21:17:52 +08:00
*
2015-11-19 01:25:36 +08:00
*/
class AutoDomainGrabPlugin extends \RainLoop\Plugins\AbstractPlugin
{
2020-03-11 21:17:52 +08:00
2018-02-03 20:01:50 +08:00
private $imap_prefix = "mail.";
private $smtp_prefix = "mail.";
2020-03-11 21:17:52 +08:00
2020-08-31 00:04:54 +08:00
public function Init() : void
{
$this->addHook('filter.smtp-credentials', 'FilterSmtpCredentials');
$this->addHook('filter.imap-credentials', 'FilterImapCredentials');
}
/**
2018-11-30 01:26:22 +08:00
* This function detects the IMAP Host, and if it is set to "auto", replaces it with the MX or email domain.
*
* @param \RainLoop\Model\Account $oAccount
* @param array $aImapCredentials
*/
public function FilterImapCredentials($oAccount, &$aImapCredentials)
{
if ($oAccount instanceof \RainLoop\Model\Account && \is_array($aImapCredentials))
{
// Check for mail.$DOMAIN as entered value in RL settings
if (!empty($aImapCredentials['Host']) && 'auto' === $aImapCredentials['Host'])
{
2018-02-03 20:01:50 +08:00
$domain = substr(strrchr($oAccount->Email(), "@"), 1);
$mxhosts = array();
if(getmxrr($domain, $mxhosts) && sizeof($mxhosts) > 0)
{
$aImapCredentials['Host'] = $mxhosts[0];
}
2020-03-11 21:17:52 +08:00
else
{
$aImapCredentials['Host'] = $this->imap_prefix.$domain;
}
}
}
}
/**
2018-11-30 01:26:22 +08:00
* This function detects the SMTP Host, and if it is set to "auto", replaces it with the MX or email domain.
*
* @param \RainLoop\Model\Account $oAccount
* @param array $aSmtpCredentials
*/
public function FilterSmtpCredentials($oAccount, &$aSmtpCredentials)
{
if ($oAccount instanceof \RainLoop\Model\Account && \is_array($aSmtpCredentials))
{
// Check for mail.$DOMAIN as entered value in RL settings
if (!empty($aSmtpCredentials['Host']) && 'auto' === $aSmtpCredentials['Host'])
{
2018-02-03 20:01:50 +08:00
$domain = substr(strrchr($oAccount->Email(), "@"), 1);
$mxhosts = array();
if(getmxrr($domain, $mxhosts) && sizeof($mxhosts) > 0)
{
$aSmtpCredentials['Host'] = $mxhosts[0];
2020-03-11 21:17:52 +08:00
}
else
{
$aSmtpCredentials['Host'] = $this->smtp_prefix.$domain;
}
}
}
}
2015-11-19 01:25:36 +08:00
}