This commit is contained in:
the-djmaze 2023-02-10 11:38:41 +01:00
parent 2f22267a77
commit 399ae06a5c
10 changed files with 40 additions and 12 deletions

View file

@ -316,5 +316,5 @@ dev_email = ""
dev_password = "" dev_password = ""
[version] [version]
current = "2.25.5" current = "2.26.0"
saved = "Sun, 18 Dec 2022 22:10:48 +0000" saved = "Sun, 18 Dec 2022 22:10:48 +0000"

View file

@ -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 ## 2.25.5 2023-02-09
## Added ## Added

View file

@ -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. SnappyMail is a simple, modern, lightweight & fast web-based email client.

View file

@ -4,7 +4,7 @@ RUN mkdir -p /app/code
WORKDIR /app/code WORKDIR /app/code
# If you change the extraction below, be sure to test on scaleway # 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 && \ 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 && \ unzip /tmp/snappymail.zip -d /app/code && \
rm /tmp/snappymail.zip && \ rm /tmp/snappymail.zip && \

View file

@ -3,7 +3,7 @@
<id>snappymail</id> <id>snappymail</id>
<name>SnappyMail</name> <name>SnappyMail</name>
<summary>SnappyMail Webmail</summary> <summary>SnappyMail Webmail</summary>
<version>2.25.5</version> <version>2.26.0</version>
<licence>agpl</licence> <licence>agpl</licence>
<author>SnappyMail, RainLoop Team, Nextgen-Networks, Tab Fitts, Nathan Kinkade, Pierre-Alain Bandinelli</author> <author>SnappyMail, RainLoop Team, Nextgen-Networks, Tab Fitts, Nathan Kinkade, Pierre-Alain Bandinelli</author>
<description><![CDATA[**Simple, modern, lightweight & fast web-based email client.** <description><![CDATA[**Simple, modern, lightweight & fast web-based email client.**

View file

@ -20,7 +20,7 @@ return "SnappyMail Webmail is a browser-based multilingual IMAP client with an a
# script_snappymail_versions() # script_snappymail_versions()
sub script_snappymail_versions sub script_snappymail_versions
{ {
return ( "2.25.5" ); return ( "2.26.0" );
} }
sub script_snappymail_version_desc sub script_snappymail_version_desc

View file

@ -3,7 +3,7 @@
"title": "SnappyMail", "title": "SnappyMail",
"description": "Simple, modern & fast web-based email client", "description": "Simple, modern & fast web-based email client",
"private": true, "private": true,
"version": "2.25.5", "version": "2.26.0",
"homepage": "https://snappymail.eu", "homepage": "https://snappymail.eu",
"author": { "author": {
"name": "DJ Maze", "name": "DJ Maze",

View file

@ -4,11 +4,11 @@ class KolabPlugin extends \RainLoop\Plugins\AbstractPlugin
{ {
const const
NAME = 'Kolab', NAME = 'Kolab',
VERSION = '2.5', VERSION = '2.6',
RELEASE = '2023-01-17', RELEASE = '2023-02-10',
CATEGORY = 'Contacts', CATEGORY = 'Contacts',
DESCRIPTION = 'Use an Address Book of Kolab.', DESCRIPTION = 'Use an Address Book of Kolab.',
REQUIRED = '2.24.6'; REQUIRED = '2.26.0';
public function Init() : void public function Init() : void
{ {

View file

@ -67,9 +67,7 @@ class ResponseCollection extends \MailSo\Base\Collection
} }
if (\is_array($aList) && \count($aList)) { if (\is_array($aList) && \count($aList)) {
$aList = \array_map('strtoupper', $aList); return \array_map('strtoupper', $aList);
\sort($aList);
return $aList;
} }
} }
return null; return null;

View file

@ -316,6 +316,7 @@ abstract class SearchCriterias
public static function escapeSearchString(\MailSo\Imap\ImapClient $oImapClient, string $sSearch) : string public static function escapeSearchString(\MailSo\Imap\ImapClient $oImapClient, string $sSearch) : string
{ {
// https://github.com/the-djmaze/snappymail/issues/836
// return $oImapClient->EscapeString($sSearch); // return $oImapClient->EscapeString($sSearch);
// return \MailSo\Base\Utils::IsAscii($sSearch) || $oImapClient->hasCapability('QQMail')) // return \MailSo\Base\Utils::IsAscii($sSearch) || $oImapClient->hasCapability('QQMail'))
return (\MailSo\Base\Utils::IsAscii($sSearch) || !$oImapClient->hasCapability('LITERAL+')) return (\MailSo\Base\Utils::IsAscii($sSearch) || !$oImapClient->hasCapability('LITERAL+'))