mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-27 09:08:26 +08:00
v2.26.0
This commit is contained in:
parent
2f22267a77
commit
399ae06a5c
10 changed files with 40 additions and 12 deletions
|
@ -316,5 +316,5 @@ dev_email = ""
|
|||
dev_password = ""
|
||||
|
||||
[version]
|
||||
current = "2.25.5"
|
||||
current = "2.26.0"
|
||||
saved = "Sun, 18 Dec 2022 22:10:48 +0000"
|
||||
|
|
29
CHANGELOG.md
29
CHANGELOG.md
|
@ -1,3 +1,32 @@
|
|||
## 2.26.0 – 2023-02-10
|
||||
|
||||
## Added
|
||||
- Whitelist advanced SPF/DKIM/DMARC valid feature
|
||||
[#938](https://github.com/the-djmaze/snappymail/pull/938)
|
||||
|
||||
## Changed
|
||||
- \RainLoop\Providers\AddressBook\Utils functions param `Contact` changed to `VCard`
|
||||
|
||||
## Fixed
|
||||
- Issue with themes and Chrome cache
|
||||
[#188](https://github.com/the-djmaze/snappymail/pull/188)
|
||||
- Settings panel width due to display:flex
|
||||
[#940](https://github.com/the-djmaze/snappymail/pull/940)
|
||||
- Not respecting default theme setting
|
||||
[#941](https://github.com/the-djmaze/snappymail/pull/941)
|
||||
- Some files had 0755 instead of 0644
|
||||
- Some spacing between message "view images" buttons for
|
||||
[#201](https://github.com/the-djmaze/snappymail/pull/201)
|
||||
- Whitelist failed when empty or when using `:`
|
||||
[#938](https://github.com/the-djmaze/snappymail/pull/938)
|
||||
- Cosmetics of the external images whitelist menu
|
||||
[#939](https://github.com/the-djmaze/snappymail/pull/939)
|
||||
- PdoAddressBook ORDER BY deleted DESC to prevent sync and export issues
|
||||
- Undefined variable $items in upgrade.php
|
||||
- qq.com not supporting literal-string in search
|
||||
[#836](https://github.com/the-djmaze/snappymail/pull/836)
|
||||
|
||||
|
||||
## 2.25.5 – 2023-02-09
|
||||
|
||||
## Added
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
This app packages SnappyMail <upstream>2.25.5</upstream>.
|
||||
This app packages SnappyMail <upstream>2.26.0</upstream>.
|
||||
|
||||
SnappyMail is a simple, modern, lightweight & fast web-based email client.
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ RUN mkdir -p /app/code
|
|||
WORKDIR /app/code
|
||||
|
||||
# If you change the extraction below, be sure to test on scaleway
|
||||
VERSION=2.25.5
|
||||
VERSION=2.26.0
|
||||
RUN wget https://github.com/the-djmaze/snappymail/releases/download/v${VERSION}/snappymail-${VERSION}.zip -O /tmp/snappymail.zip && \
|
||||
unzip /tmp/snappymail.zip -d /app/code && \
|
||||
rm /tmp/snappymail.zip && \
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<id>snappymail</id>
|
||||
<name>SnappyMail</name>
|
||||
<summary>SnappyMail Webmail</summary>
|
||||
<version>2.25.5</version>
|
||||
<version>2.26.0</version>
|
||||
<licence>agpl</licence>
|
||||
<author>SnappyMail, RainLoop Team, Nextgen-Networks, Tab Fitts, Nathan Kinkade, Pierre-Alain Bandinelli</author>
|
||||
<description><![CDATA[**Simple, modern, lightweight & fast web-based email client.**
|
||||
|
|
|
@ -20,7 +20,7 @@ return "SnappyMail Webmail is a browser-based multilingual IMAP client with an a
|
|||
# script_snappymail_versions()
|
||||
sub script_snappymail_versions
|
||||
{
|
||||
return ( "2.25.5" );
|
||||
return ( "2.26.0" );
|
||||
}
|
||||
|
||||
sub script_snappymail_version_desc
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"title": "SnappyMail",
|
||||
"description": "Simple, modern & fast web-based email client",
|
||||
"private": true,
|
||||
"version": "2.25.5",
|
||||
"version": "2.26.0",
|
||||
"homepage": "https://snappymail.eu",
|
||||
"author": {
|
||||
"name": "DJ Maze",
|
||||
|
|
|
@ -4,11 +4,11 @@ class KolabPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|||
{
|
||||
const
|
||||
NAME = 'Kolab',
|
||||
VERSION = '2.5',
|
||||
RELEASE = '2023-01-17',
|
||||
VERSION = '2.6',
|
||||
RELEASE = '2023-02-10',
|
||||
CATEGORY = 'Contacts',
|
||||
DESCRIPTION = 'Use an Address Book of Kolab.',
|
||||
REQUIRED = '2.24.6';
|
||||
REQUIRED = '2.26.0';
|
||||
|
||||
public function Init() : void
|
||||
{
|
||||
|
|
|
@ -67,9 +67,7 @@ class ResponseCollection extends \MailSo\Base\Collection
|
|||
}
|
||||
|
||||
if (\is_array($aList) && \count($aList)) {
|
||||
$aList = \array_map('strtoupper', $aList);
|
||||
\sort($aList);
|
||||
return $aList;
|
||||
return \array_map('strtoupper', $aList);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
|
|
|
@ -316,6 +316,7 @@ abstract class SearchCriterias
|
|||
|
||||
public static function escapeSearchString(\MailSo\Imap\ImapClient $oImapClient, string $sSearch) : string
|
||||
{
|
||||
// https://github.com/the-djmaze/snappymail/issues/836
|
||||
// return $oImapClient->EscapeString($sSearch);
|
||||
// return \MailSo\Base\Utils::IsAscii($sSearch) || $oImapClient->hasCapability('QQMail'))
|
||||
return (\MailSo\Base\Utils::IsAscii($sSearch) || !$oImapClient->hasCapability('LITERAL+'))
|
||||
|
|
Loading…
Reference in a new issue