mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-05 07:27:04 +03:00
Update ckeditor
This commit is contained in:
parent
11b66abd17
commit
8747ea59ac
107 changed files with 1021 additions and 968 deletions
|
|
@ -283,6 +283,7 @@ class Folder
|
|||
$iListType = \MailSo\Imap\Enumerations\FolderType::INBOX;
|
||||
break;
|
||||
case \in_array('\sent', $aFlags):
|
||||
case \in_array('\sentmail', $aFlags):
|
||||
$iListType = \MailSo\Imap\Enumerations\FolderType::SENT;
|
||||
break;
|
||||
case \in_array('\drafts', $aFlags):
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ final class Version
|
|||
/**
|
||||
* @var string
|
||||
*/
|
||||
const APP_VERSION = '1.3.3';
|
||||
const APP_VERSION = '2.0.0';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
|
|
@ -53,7 +53,7 @@ final class Version
|
|||
$oPhar = new \Phar('mailso.phar');
|
||||
$sSignature = $oPhar->getSignature();
|
||||
}
|
||||
|
||||
|
||||
return $sSignature;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1158,7 +1158,7 @@ class Actions
|
|||
$aResult['GoogleClientID'] = '';
|
||||
$aResult['GoogleApiKey'] = '';
|
||||
}
|
||||
|
||||
|
||||
if (!$aResult['AllowGoogleSocial'])
|
||||
{
|
||||
$aResult['AllowGoogleSocialPreview'] = false;
|
||||
|
|
@ -1498,7 +1498,7 @@ class Actions
|
|||
{
|
||||
$this->Logger()->Write('The email address "'.$sEmail.'" is not complete', \MailSo\Log\Enumerations\Type::INFO, 'LOGIN');
|
||||
|
||||
if (false === \strpos($sEmail, '@') && 0 < \strlen(\trim($this->Config()->Get('login', 'determine_user_domain', false))))
|
||||
if (false === \strpos($sEmail, '@') && !!$this->Config()->Get('login', 'determine_user_domain', false))
|
||||
{
|
||||
$sUserHost = \trim($this->Http()->GetHost(false, true, true));
|
||||
$this->Logger()->Write('Determined user domain: '.$sUserHost, \MailSo\Log\Enumerations\Type::INFO, 'LOGIN');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue