mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Small fixes
This commit is contained in:
parent
1027f319ed
commit
2d9ac0b53a
6 changed files with 28 additions and 22 deletions
|
|
@ -74,7 +74,6 @@ MailBoxScreen.prototype.onRoute = function (sFolderHash, iPage, sSearch, bPrevie
|
||||||
if (Enums.Layout.NoPreview === oData.layout() && oData.message())
|
if (Enums.Layout.NoPreview === oData.layout() && oData.message())
|
||||||
{
|
{
|
||||||
oData.message(null);
|
oData.message(null);
|
||||||
oData.messageFullScreenMode(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RL.reloadMessageList();
|
RL.reloadMessageList();
|
||||||
|
|
|
||||||
|
|
@ -289,6 +289,7 @@ function WebMailDataStorage()
|
||||||
if (!oMessage)
|
if (!oMessage)
|
||||||
{
|
{
|
||||||
this.message.focused(false);
|
this.message.focused(false);
|
||||||
|
this.messageFullScreenMode(false);
|
||||||
this.hideMessageBodies();
|
this.hideMessageBodies();
|
||||||
|
|
||||||
if (Enums.Layout.NoPreview === RL.data().layout() &&
|
if (Enums.Layout.NoPreview === RL.data().layout() &&
|
||||||
|
|
|
||||||
|
|
@ -237,7 +237,13 @@ class PoppassdClient extends \MailSo\Net\NetClient
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$bResult = (bool) \preg_match('/^2\d\d/', trim($this->sResponseBuffer));
|
$bResult = (bool) \preg_match('/^2\d\d/', \trim($this->sResponseBuffer));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$bResult)
|
||||||
|
{
|
||||||
|
// POP3 validation hack
|
||||||
|
$bResult = '+OK ' === \substr(\trim($this->sResponseBuffer), 0, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$bResult)
|
if (!$bResult)
|
||||||
|
|
|
||||||
|
|
@ -557,7 +557,7 @@ COULD_NOT_SAVE_NEW_PASSWORD = "Impossibile salvare la nuova password"
|
||||||
CURRENT_PASSWORD_INCORRECT = "La password attuale è scorretta"
|
CURRENT_PASSWORD_INCORRECT = "La password attuale è scorretta"
|
||||||
NEW_PASSWORD_SHORT = "La password è troppo corta"
|
NEW_PASSWORD_SHORT = "La password è troppo corta"
|
||||||
NEW_PASSWORD_WEAK = "La password è troppo facile"
|
NEW_PASSWORD_WEAK = "La password è troppo facile"
|
||||||
NEW_PASSWORD_FORBIDDENT = "La password contiene cavalli proibiti"
|
NEW_PASSWORD_FORBIDDENT = "La password contiene caratteri proibiti"
|
||||||
CONTACTS_SYNC_ERROR = "Errore durante la sincronizzazione dei contatti"
|
CONTACTS_SYNC_ERROR = "Errore durante la sincronizzazione dei contatti"
|
||||||
CANT_GET_MESSAGE_LIST = "Impossibile ottenere la lista dei messaggi"
|
CANT_GET_MESSAGE_LIST = "Impossibile ottenere la lista dei messaggi"
|
||||||
CANT_GET_MESSAGE = "Impossibile ottenere il messaggio"
|
CANT_GET_MESSAGE = "Impossibile ottenere il messaggio"
|
||||||
|
|
@ -584,7 +584,7 @@ LICENSING_DOMAIN_EXPIRED = "La licenza per questo dominio è scaduta"
|
||||||
LICENSING_DOMAIN_BANNED = "Questo dominio è stato bannato"
|
LICENSING_DOMAIN_BANNED = "Questo dominio è stato bannato"
|
||||||
DEMO_SEND_MESSAGE_ERROR = "Per ragioni di sicurezza, questa demo non è abilitata ad inviare email ad inidirizzi esterni"
|
DEMO_SEND_MESSAGE_ERROR = "Per ragioni di sicurezza, questa demo non è abilitata ad inviare email ad inidirizzi esterni"
|
||||||
ACCOUNT_ALREADY_EXISTS = "L'account esiste già"
|
ACCOUNT_ALREADY_EXISTS = "L'account esiste già"
|
||||||
MAIL_SERVER_ERROR = "È successo un errore nel server mail"
|
MAIL_SERVER_ERROR = "Si è verificato un errore nel server mail"
|
||||||
INVALID_INPUT_ARGUMENT = "Invalid input argument"
|
INVALID_INPUT_ARGUMENT = "Invalid input argument"
|
||||||
UNKNOWN_ERROR = "Errore sconosciuto"
|
UNKNOWN_ERROR = "Errore sconosciuto"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16764,6 +16764,7 @@ function WebMailDataStorage()
|
||||||
if (!oMessage)
|
if (!oMessage)
|
||||||
{
|
{
|
||||||
this.message.focused(false);
|
this.message.focused(false);
|
||||||
|
this.messageFullScreenMode(false);
|
||||||
this.hideMessageBodies();
|
this.hideMessageBodies();
|
||||||
|
|
||||||
if (Enums.Layout.NoPreview === RL.data().layout() &&
|
if (Enums.Layout.NoPreview === RL.data().layout() &&
|
||||||
|
|
@ -19472,7 +19473,6 @@ MailBoxScreen.prototype.onRoute = function (sFolderHash, iPage, sSearch, bPrevie
|
||||||
if (Enums.Layout.NoPreview === oData.layout() && oData.message())
|
if (Enums.Layout.NoPreview === oData.layout() && oData.message())
|
||||||
{
|
{
|
||||||
oData.message(null);
|
oData.message(null);
|
||||||
oData.messageFullScreenMode(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RL.reloadMessageList();
|
RL.reloadMessageList();
|
||||||
|
|
|
||||||
14
rainloop/v/0.0.0/static/js/app.min.js
vendored
14
rainloop/v/0.0.0/static/js/app.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue