Author Topic: Roundcube 1.6.0 released  (Read 21189 times)

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Roundcube 1.6.0 released
« 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:
  • PHP 8.1 support
  • Dropped support for PHP < 7.3
  • Support responses (snippets) in HTML format
  • Option to purge deleted mails older than 30, 60 or 90 days
  • Unified and simplified services connection config options
  • Removed the Classic and Larry skins from the release packages
  • SQLite: Use foreign keys, require SQLite >= 3.6.19
See the full changelog in the release notes on the Github download page.

Breaking Changes to 1.5 and prior versions
The following config options have either been removed or renamed:
  • IMAP:
    • renamed default_host to imap_host
    • removed default_port option (non-standard port can be set via imap_host)
    • set “localhost:143” as a default for imap_host
  • SMTP:
    • renamed smtp_server to smtp_host
    • removed smtp_port option (non-standard port can be set via smtp_host)
    • set “localhost:587” as a default for smtp_host
  • LDAP:
    • removed port option from ldap_public array (non-standard port can be set via host)
    • removed use_tls option from ldap_public array (use tls:// prefix in host)
  • Managesieve:
    • removed managesieve_port option (non-standard port can be set via managesieve_host)
    • removed managesieve_usetls option (set tls:// prefix to managesieve_host)

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.

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

Offline ElasticUser

  • Full Member
  • ***
  • Posts: 83
Re: Roundcube 1.6.0 released
« Reply #1 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?!  :--)
« Last Edit: September 22, 2022, 03:50:17 AM by ElasticUser »

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Roundcube 1.6.0 released
« Reply #2 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.

Offline ElasticUser

  • Full Member
  • ***
  • Posts: 83
Re: Roundcube 1.6.0 released
« Reply #3 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.   :)

Offline ElasticUser

  • Full Member
  • ***
  • Posts: 83
Re: Roundcube 1.6.0 released
« Reply #4 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';

Offline Dmitry42

  • Full Member
  • ***
  • Posts: 232
Re: Roundcube 1.6.0 released
« Reply #5 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';

Offline ElasticUser

  • Full Member
  • ***
  • Posts: 83
Re: Roundcube 1.6.0 released
« Reply #6 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';
« Last Edit: February 01, 2023, 11:59:55 AM by ElasticUser »

Offline Dmitry42

  • Full Member
  • ***
  • Posts: 232
Re: Roundcube 1.6.0 released
« Reply #7 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.
« Last Edit: February 01, 2023, 12:11:41 PM by Dmitry42 »

Offline ElasticUser

  • Full Member
  • ***
  • Posts: 83
Re: Roundcube 1.6.0 released
« Reply #8 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!  😎
« Last Edit: February 02, 2023, 12:20:53 AM by ElasticUser »

Offline ElasticUser

  • Full Member
  • ***
  • Posts: 83
Re: Roundcube 1.6.0 released
« Reply #9 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

Offline Dmitry42

  • Full Member
  • ***
  • Posts: 232
Re: Roundcube 1.6.0 released
« Reply #10 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)

Offline ElasticUser

  • Full Member
  • ***
  • Posts: 83
Re: Roundcube 1.6.0 released
« Reply #11 on: February 03, 2023, 02:09:11 AM »
I'll see if an Upgraded version of the Emoticons plugin helps.   8)

Offline Dmitry42

  • Full Member
  • ***
  • Posts: 232
Re: Roundcube 1.6.0 released
« Reply #12 on: February 14, 2023, 10:27:53 PM »
I enable emoticons plugin - and its work on 1.6.1 without any problems.

Offline ElasticUser

  • Full Member
  • ***
  • Posts: 83
Re: Roundcube 1.6.0 released
« Reply #13 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.   :'(

Offline ElasticUser

  • Full Member
  • ***
  • Posts: 83
Re: Roundcube 1.6.0 released
« Reply #14 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)