Small fixes

This commit is contained in:
RainLoop Team 2014-08-07 01:10:16 +04:00
parent 1027f319ed
commit 2d9ac0b53a
6 changed files with 28 additions and 22 deletions

View file

@ -74,7 +74,6 @@ MailBoxScreen.prototype.onRoute = function (sFolderHash, iPage, sSearch, bPrevie
if (Enums.Layout.NoPreview === oData.layout() && oData.message())
{
oData.message(null);
oData.messageFullScreenMode(false);
}
RL.reloadMessageList();

View file

@ -289,6 +289,7 @@ function WebMailDataStorage()
if (!oMessage)
{
this.message.focused(false);
this.messageFullScreenMode(false);
this.hideMessageBodies();
if (Enums.Layout.NoPreview === RL.data().layout() &&

View file

@ -237,7 +237,13 @@ class PoppassdClient extends \MailSo\Net\NetClient
}
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)

View file

@ -557,7 +557,7 @@ COULD_NOT_SAVE_NEW_PASSWORD = "Impossibile salvare la nuova password"
CURRENT_PASSWORD_INCORRECT = "La password attuale è scorretta"
NEW_PASSWORD_SHORT = "La password è troppo corta"
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"
CANT_GET_MESSAGE_LIST = "Impossibile ottenere la lista dei messaggi"
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"
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à"
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"
UNKNOWN_ERROR = "Errore sconosciuto"

View file

@ -16764,6 +16764,7 @@ function WebMailDataStorage()
if (!oMessage)
{
this.message.focused(false);
this.messageFullScreenMode(false);
this.hideMessageBodies();
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())
{
oData.message(null);
oData.messageFullScreenMode(false);
}
RL.reloadMessageList();

File diff suppressed because one or more lines are too long