mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Fixed domain popup saving
This commit is contained in:
parent
cb50320db4
commit
2feee6d1dd
4 changed files with 39 additions and 28 deletions
|
|
@ -81,11 +81,11 @@
|
|||
}, this);
|
||||
|
||||
this.domainIsComputed = ko.computed(function () {
|
||||
var bPhpMail = this.smtpPhpMail();
|
||||
return '' !== this.name() &&
|
||||
'' !== this.imapServer() &&
|
||||
'' !== this.imapPort() &&
|
||||
'' !== this.smtpServer() &&
|
||||
'' !== this.smtpPort();
|
||||
(('' !== this.smtpServer() && '' !== this.smtpPort()) || bPhpMail);
|
||||
}, this);
|
||||
|
||||
this.canBeTested = ko.computed(function () {
|
||||
|
|
|
|||
|
|
@ -2989,6 +2989,17 @@ class Actions
|
|||
$sImapErrorDesc = $oException->getMessage();
|
||||
}
|
||||
|
||||
if ($oDomain->OutUsePhpMail())
|
||||
{
|
||||
$bSmtpResult = \MailSo\Base\Utils::FunctionExistsAndEnabled('mail');
|
||||
$bSmtpResult = false;
|
||||
if (!$bSmtpResult)
|
||||
{
|
||||
$sSmtpErrorDesc = 'PHP: mail() function is undefined';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
try
|
||||
{
|
||||
$oSmtpClient = \MailSo\Smtp\SmtpClient::NewInstance()->SetLogger($this->Logger());
|
||||
|
|
@ -3017,6 +3028,7 @@ class Actions
|
|||
$sSmtpErrorDesc = $oException->getMessage();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $this->DefaultResponse(__FUNCTION__, array(
|
||||
'Imap' => $bImapResult ? true : $sImapErrorDesc,
|
||||
|
|
|
|||
|
|
@ -136,16 +136,15 @@ class Domain
|
|||
{
|
||||
$oDomain = null;
|
||||
|
||||
if (0 < \strlen($sName) && \is_array($aDomain) && 0 < \strlen($aDomain['imap_host']) && 0 < \strlen($aDomain['imap_port']) &&
|
||||
0 < \strlen($aDomain['smtp_host']) && 0 < \strlen($aDomain['smtp_port']))
|
||||
if (0 < \strlen($sName) && \is_array($aDomain) && 0 < \strlen($aDomain['imap_host']) && 0 < \strlen($aDomain['imap_port']))
|
||||
{
|
||||
$sIncHost = (string) $aDomain['imap_host'];
|
||||
$iIncPort = (int) $aDomain['imap_port'];
|
||||
$iIncSecure = self::StrConnectionSecurityTypeToCons(
|
||||
!empty($aDomain['imap_secure']) ? $aDomain['imap_secure'] : '');
|
||||
|
||||
$sOutHost = (string) $aDomain['smtp_host'];
|
||||
$iOutPort = (int) $aDomain['smtp_port'];
|
||||
$sOutHost = empty($aDomain['smtp_host']) ? '' : (string) $aDomain['smtp_host'];
|
||||
$iOutPort = empty($aDomain['smtp_port']) ? 25 : (int) $aDomain['smtp_port'];
|
||||
$iOutSecure = self::StrConnectionSecurityTypeToCons(
|
||||
!empty($aDomain['smtp_secure']) ? $aDomain['smtp_secure'] : '');
|
||||
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@
|
|||
name: 'Checkbox',
|
||||
params: {
|
||||
enable: capa,
|
||||
label: 'Show "Powered by RainLoop" link (White Labeling)',
|
||||
label: 'Show "Powered by RainLoop" link',
|
||||
value: loginPowered
|
||||
}
|
||||
}"></div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue