Roundcube Community Forum

News and Announcements => News & Announcements => Topic started by: SKaero on July 28, 2022, 10:16:40 PM

Title: Roundcube 1.6.0 released
Post by: SKaero on July 28, 2022, 10:16:40 PM
We proudly announce the release of the next major version 1.6 of Roundcube webmail. With this milestone we cleaned up the codebase and bring full support for PHP 8.1. The most noteworthy changes, as already announced with the beta release, are:
See the full changelog in the release notes (https://github.com/roundcube/roundcubemail/releases/tag/1.6.0) on the Github download page.

Breaking Changes to 1.5 and prior versions
The following config options have either been removed or renamed:

The skins Larry and Classic are no longer part of the release packages. If you used them in your deployment, you need to install them manually. That can easily be done via Composer:
Code: [Select]
$ composer require roundcube/larry

This release is considered stable and we encourage you to update your productive installations after carefully testing the upgrade scenario. Download it from roundcube.net (https://roundcube.net/download).

With the release of Roundcube 1.6.0, the previous stable release branches 1.5.x and 1.5.x will change into LTS low maintenance mode which means they will only receive important security updates. The 1.3.x series is no longer supported and maintained.

Source: https://roundcube.net/news/2022/07/28/roundcube-1.6.0-released
Get it Now: https://roundcube.net/download
Title: Re: Roundcube 1.6.0 released
Post by: ElasticUser on September 22, 2022, 03:45:08 AM
In cPanel Apps, Roundcube 1.5.3 is the Newest Version.  :--)

Version : 1.5.3

Release Date : 06-27-2022

Also, I Haven't been Up to Date with Roundcube for a couple years or so.  Does Roundcube Have a Long Needed Admin Panel yet?!  :--)
Title: Re: Roundcube 1.6.0 released
Post by: SKaero on September 22, 2022, 03:53:57 PM
In cPanel Apps, Roundcube 1.5.3 is the Newest Version.  :--)

Version : 1.5.3

Release Date : 06-27-2022
That isn't managed by Roundcube so cPanel (I'm guessing) would need to upgrade their version.

Also, I Haven't been Up to Date with Roundcube for a couple years or so.  Does Roundcube Have a Long Needed Admin Panel yet?!  :--)
No there isn't a admin panel for Roundcube. I'm not really sure what could go into a admin panel for Roundcube that would make it make sense.
Title: Re: Roundcube 1.6.0 released
Post by: ElasticUser on November 08, 2022, 07:15:41 PM
Okay, a R C admin panel used to be mentioned for future versions.  It looks like R C Changed the plans for that.   :)
Title: Re: Roundcube 1.6.0 released
Post by: ElasticUser on January 31, 2023, 10:42:14 PM
Last week, cPanel went from 1.5.3 to 1.6.1.  On this forum site, there's No mention of 1.6.1.  How did cPanel get ahead of the R C forum site?

On my ancient install, and on my 1.6.1 install, I have the SMTP User & Pass as below.  On 1.6.1, it Won't let me log in.  It's saying connection to the storage server failed.  I'm currently Not remembering how to fix that.  😎

$config['smtp_user'] = '%u';

$config['smtp_pass'] = '%p';
Title: Re: Roundcube 1.6.0 released
Post by: Dmitry42 on February 01, 2023, 02:30:56 AM
"storage server failed" - I think problem not in SMTP.
May be SQL ?

I use 1.6.1 and its work

$config['smtp_host'] = 'localhost:587';
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
Title: Re: Roundcube 1.6.0 released
Post by: ElasticUser on February 01, 2023, 11:51:32 AM
The IMAP had the below config line:

$config['imap_host'] = 'ssl://mail.royalemail.club:143';

After I changed it to the config lines below this, I can log in.   8)

$config['default_host'] = 'localhost';

// TCP port used for IMAP connections
$config['default_port'] = '143';
Title: Re: Roundcube 1.6.0 released
Post by: Dmitry42 on February 01, 2023, 12:01:10 PM
I think problem was in your old config using SSL with 143 port -  usually 143 port must be connected without security.
ssl/tls usually used with 993 IMAP port. So when you set $config['default_host'] = 'localhost'; - its work with clear IMAP on 143 port.

If your RC on the same host where your mail server - I think imap is enough. But if RC on another server - you better use SSL or TLS for connect to mail.
Its more securely.

P.S.
And your config string $config['default_port'] = '143'; is deprecated in 1.6.1 - removed default_port option (non-standard port can be set via imap_host) - its written in first message of this thread.
Title: Re: Roundcube 1.6.0 released
Post by: ElasticUser on February 01, 2023, 08:10:17 PM
I changed it to 993 on my outdated install, and on my 1.6.1 install.  Thanks!  😎
Title: Re: Roundcube 1.6.0 released
Post by: ElasticUser on February 02, 2023, 06:43:48 PM
Also, I added my animated emojis / emoticons to 1.6.1 the Same way as I've had that for years.  However, a pop up error message is saying the below message.  Did that plugin Change?   8)

Failed to initialize plugin: emoticons
Title: Re: Roundcube 1.6.0 released
Post by: Dmitry42 on February 02, 2023, 08:49:25 PM
2 way )))

1. Ask plugin developer upgrade it for 1.6.1
2. Do upgrade by your hand (if you know PHP)
Title: Re: Roundcube 1.6.0 released
Post by: ElasticUser on February 03, 2023, 02:09:11 AM
I'll see if an Upgraded version of the Emoticons plugin helps.   8)
Title: Re: Roundcube 1.6.0 released
Post by: Dmitry42 on February 14, 2023, 10:27:53 PM
I enable emoticons plugin - and its work on 1.6.1 without any problems.
Title: Re: Roundcube 1.6.0 released
Post by: ElasticUser on August 17, 2023, 11:20:30 PM
Dmitry42:  Yes, emoticons runs on version 1.6.1 via my computer.  However, Not on my phone.  Also, TinyMCE changed, and there Doesn't appear to be a way to add custom emoticons anymore.  Only the default boring Non animated emoticons.   :'(
Title: Re: Roundcube 1.6.0 released
Post by: ElasticUser on August 23, 2023, 03:27:17 AM
Dmitry42:  I started using version 1.4.13.  That's the Last version that allows emoticons on both phones, and computers, as well as the Last version that allows adding Custom emoticons!   8)
Title: Re: Roundcube 1.6.0 released
Post by: Dmitry42 on August 23, 2023, 04:57:22 AM
ok ))