mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Release commit
This commit is contained in:
parent
fe2c122d7c
commit
f749d77fff
5 changed files with 8 additions and 6 deletions
|
|
@ -301,7 +301,7 @@
|
||||||
else if (-1 < Utils.inArray(aParts[1],
|
else if (-1 < Utils.inArray(aParts[1],
|
||||||
['pdf', 'x-pdf']))
|
['pdf', 'x-pdf']))
|
||||||
{
|
{
|
||||||
sText = 'pdf'
|
sText = 'pdf';
|
||||||
sClass = 'icon-none';
|
sClass = 'icon-none';
|
||||||
}
|
}
|
||||||
// else if (-1 < Utils.inArray(aParts[1], [
|
// else if (-1 < Utils.inArray(aParts[1], [
|
||||||
|
|
@ -311,7 +311,7 @@
|
||||||
// sClass = 'icon-console';
|
// sClass = 'icon-console';
|
||||||
// }
|
// }
|
||||||
else if (-1 < Utils.inArray(sMimeType, [
|
else if (-1 < Utils.inArray(sMimeType, [
|
||||||
'application/pgp-signature'
|
'application/pgp-signature', 'application/pkcs7-signature'
|
||||||
]))
|
]))
|
||||||
{
|
{
|
||||||
sClass = 'icon-file-certificate';
|
sClass = 'icon-file-certificate';
|
||||||
|
|
|
||||||
|
|
@ -226,7 +226,8 @@
|
||||||
*/
|
*/
|
||||||
RemoteUserStorage.prototype.accountsCounts = function (fCallback)
|
RemoteUserStorage.prototype.accountsCounts = function (fCallback)
|
||||||
{
|
{
|
||||||
this.defaultRequest(fCallback, 'AccountsCounts');
|
return !!fCallback; // TODO
|
||||||
|
// this.defaultRequest(fCallback, 'AccountsCounts');
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "RainLoop",
|
"name": "RainLoop",
|
||||||
"title": "RainLoop Webmail",
|
"title": "RainLoop Webmail",
|
||||||
"version": "1.7.2",
|
"version": "1.7.2",
|
||||||
"release": "224",
|
"release": "226",
|
||||||
"description": "Simple, modern & fast web-based email client",
|
"description": "Simple, modern & fast web-based email client",
|
||||||
"homepage": "http://rainloop.net",
|
"homepage": "http://rainloop.net",
|
||||||
"main": "gulpfile.js",
|
"main": "gulpfile.js",
|
||||||
|
|
|
||||||
|
|
@ -262,7 +262,8 @@ class BodyStructure
|
||||||
*/
|
*/
|
||||||
public function IsPgpSignature()
|
public function IsPgpSignature()
|
||||||
{
|
{
|
||||||
return 'application/pgp-signature' === \strtolower($this->ContentType());
|
return \in_array(\strtolower($this->ContentType()),
|
||||||
|
array('application/pgp-signature', 'application/pkcs7-signature'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -8386,7 +8386,6 @@ class Actions
|
||||||
'Folder' => $mResponse->FolderName,
|
'Folder' => $mResponse->FolderName,
|
||||||
'FolderHash' => $mResponse->FolderHash,
|
'FolderHash' => $mResponse->FolderHash,
|
||||||
'UidNext' => $mResponse->UidNext,
|
'UidNext' => $mResponse->UidNext,
|
||||||
'Optimized' => $mResponse->Optimized,
|
|
||||||
'NewMessages' => $this->responseObject($mResponse->NewMessages),
|
'NewMessages' => $this->responseObject($mResponse->NewMessages),
|
||||||
'LastCollapsedThreadUids' => $mResponse->LastCollapsedThreadUids,
|
'LastCollapsedThreadUids' => $mResponse->LastCollapsedThreadUids,
|
||||||
'Offset' => $mResponse->Offset,
|
'Offset' => $mResponse->Offset,
|
||||||
|
|
@ -8406,6 +8405,7 @@ class Actions
|
||||||
'Namespace' => $mResponse->GetNamespace(),
|
'Namespace' => $mResponse->GetNamespace(),
|
||||||
'FoldersHash' => isset($mResponse->FoldersHash) ? $mResponse->FoldersHash : '',
|
'FoldersHash' => isset($mResponse->FoldersHash) ? $mResponse->FoldersHash : '',
|
||||||
'IsThreadsSupported' => $mResponse->IsThreadsSupported,
|
'IsThreadsSupported' => $mResponse->IsThreadsSupported,
|
||||||
|
'Optimized' => $mResponse->Optimized,
|
||||||
'SystemFolders' => isset($mResponse->SystemFolders) && \is_array($mResponse->SystemFolders) ? $mResponse->SystemFolders : array()
|
'SystemFolders' => isset($mResponse->SystemFolders) && \is_array($mResponse->SystemFolders) ? $mResponse->SystemFolders : array()
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue