Projects
Kolab:16:TestingLinked
roundcubemail
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 110
View file
roundcubemail.spec
Changed
@@ -48,7 +48,7 @@ %global logdir /var/log/roundcubemail %global tmpdir /var/lib/roundcubemail -%global rc_version 1.4.11.4 +%global rc_version 1.4.11.8 #%%global rc_rel_suffix rc2.12 %global dot_rel_suffix %{?rc_rel_suffix:.%{rc_rel_suffix}} %global dash_rel_suffix %{?rc_rel_suffix:-%{rc_rel_suffix}} @@ -3448,6 +3448,9 @@ %defattr(-,root,root,-) %changelog +* Thu Jun 24 2021 Jeroen van Meeuwen <vanmeeuwen@apheleia-it.ch> - 1.4.11.8-1 +- Check in release 1.4.11.8 + * Tue Apr 6 2021 Jeroen van Meeuwen <vanmeeuwen@apheleia-it.ch> - 1.4.11.4-1 - Check in release 1.4.11.4
View file
debian.changelog
Changed
@@ -1,3 +1,9 @@ +roundcubemail (1.4.11.8-0~kolab1) unstable; urgency=low + + * Check in 1.4.11.8 + + -- Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> Thu, 24 Jun 2021 11:11:11 +0200 + roundcubemail (1.4.11.4-0~kolab1) unstable; urgency=low * Check in 1.4.11.4
View file
roundcubemail-1.4.11.4.tar.gz/CHANGELOG -> roundcubemail-1.4.11.8.tar.gz/CHANGELOG
Changed
@@ -4,6 +4,8 @@ - Fix bug where contacts search didn't work with addressbook_search_mods set to an empty array (#7974) - Enigma: Fix bug where signature verification could fail for non-ascii bodies (#7919) - Fix bug causing some HTML message content to be not centered in Elastic skin (#7911) +- Fix bug where consecutive LDAP searches could return wrong results (#8064) +- Fix bug where plus characters in attachment filename could have been ignored (#8074) RELEASE 1.4.11 --------------
View file
roundcubemail-1.4.11.4.tar.gz/program/lib/Roundcube/rcube_imap.php -> roundcubemail-1.4.11.8.tar.gz/program/lib/Roundcube/rcube_imap.php
Changed
@@ -2356,7 +2356,7 @@ $filename_encoded = $fmatches2; } - $part->filename = rcube_charset::convert(urldecode($filename_encoded), $filename_charset); + $part->filename = rcube_charset::convert(rawurldecode($filename_encoded), $filename_charset); } }
View file
roundcubemail-1.4.11.4.tar.gz/program/lib/Roundcube/rcube_ldap.php -> roundcubemail-1.4.11.8.tar.gz/program/lib/Roundcube/rcube_ldap.php
Changed
@@ -884,6 +884,9 @@ $filter = 'e:' . $filter; } + // Reset the previous search result + $this->reset(); + // set filter string and execute search $this->set_search_set($filter);
View file
roundcubemail-1.4.11.4.tar.gz/program/lib/Roundcube/rcube_message.php -> roundcubemail-1.4.11.8.tar.gz/program/lib/Roundcube/rcube_message.php
Changed
@@ -49,6 +49,7 @@ private $mime; private $opt = array(); private $parse_alternative = false; + private $tnef_decode = false; public $uid; public $folder; @@ -104,6 +105,8 @@ return; } + $this->tnef_decode = (bool) $this->app->config->get('tnef_decode', true); + $this->set_safe($is_safe || $_SESSION'safe_messages'$this->folder.':'.$uid); $this->opt = array( 'safe' => $this->is_safe, @@ -817,7 +820,7 @@ continue; } // part is Microsoft Outlook TNEF (winmail.dat) - else if ($part_mimetype == 'application/ms-tnef') { + else if ($part_mimetype == 'application/ms-tnef' && $this->tnef_decode) { $tnef_parts = (array) $this->tnef_decode($mail_part); foreach ($tnef_parts as $tpart) { $this->mime_parts$tpart->mime_id = $tpart;
View file
roundcubemail-1.4.11.4.tar.gz/skins/elastic/styles/widgets/buttons.less -> roundcubemail-1.4.11.8.tar.gz/skins/elastic/styles/widgets/buttons.less
Changed
@@ -224,6 +224,8 @@ border-color: @color-btn-secondary-background; &:focus { + background: darken(@color-btn-secondary-background, 5%); + border-color: darken(@color-btn-secondary-background, 7%); box-shadow: 0 0 0 .2rem fade(@color-btn-secondary-background, 50%); } @@ -234,9 +236,8 @@ &.disabled, &:disabled { - background: lighten(@color-btn-secondary-background, 20%); - border-color: lighten(@color-btn-secondary-background, 20%); - opacity: 1; + background: @color-btn-secondary-background; + border-color: @color-btn-secondary-background; } &:not(:disabled):not(.disabled) { @@ -258,6 +259,8 @@ border-color: @color-btn-primary-background; &:focus { + background: darken(@color-btn-primary-background, 5%); + border-color: darken(@color-btn-primary-background, 7%); box-shadow: 0 0 0 .2rem fade(@color-btn-primary-background, 50%); } @@ -268,9 +271,8 @@ &.disabled, &:disabled { - background: lighten(@color-btn-primary-background, 20%); - border-color: lighten(@color-btn-primary-background, 20%); - opacity: 1; + background: @color-btn-primary-background; + border-color: @color-btn-primary-background; } &:not(:disabled):not(.disabled) { @@ -292,6 +294,8 @@ border-color: @color-btn-danger-background; &:focus { + background: darken(@color-btn-danger-background, 5%); + border-color: darken(@color-btn-danger-background, 7%); box-shadow: 0 0 0 .2rem fade(@color-btn-danger-background, 50%); } @@ -302,9 +306,8 @@ &.disabled, &:disabled { - background: lighten(@color-btn-danger-background, 20%); - border-color: lighten(@color-btn-danger-background, 20%); - opacity: 1; + background: @color-btn-danger-background; + border-color: @color-btn-danger-background; } &:not(:disabled):not(.disabled) {
View file
roundcubemail.dsc
Changed
@@ -2,7 +2,7 @@ Source: roundcubemail Binary: roundcubemail Architecture: all -Version: 1:1.4.11.4-0~kolab1 +Version: 1:1.4.11.8-0~kolab1 Maintainer: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> Uploaders: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> Homepage: http://www.roundcube.net/ @@ -14,5 +14,5 @@ roundcubemail deb web extra roundcubemail-core deb web extra Files: - 00000000000000000000000000000000 0 roundcubemail-1.4.11.4.tar.gz + 00000000000000000000000000000000 0 roundcubemail-1.4.11.8.tar.gz 00000000000000000000000000000000 0 debian.tar.gz
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.