Recent Posts

Pages: [1] 2 3 ... 10
1
Pending Issues / Re: Cloudflare 524 Error with Roudcube
« Last post by MagdAlmuntaser on May 10, 2024, 10:59:55 PM »
There is an issue between the Cloudflare DNS proxy....

This isn't a Roundcube issue.....

A similar comment was posted earlier in this thread.....

Ok guys..
Finally, I found where the problem lies. The issue is not with Roundcube, it's with the cPanel plugin, specifically CardDAV. You'll find it in this path:

/usr/local/cpanel/base/3rdparty/roundcube/plugins/carddav

The exact problem is in the config.inc.php file. An "if" condition should be added to the code to check if /var/cpanel/calendarserver exists on the server or not because it will use port 2080, which is not supported by Cloudflare.

Solution:
Replace the following code in the config.inc.php file, and the webmail will work:
Code: [Select]
$prefs['_GLOBAL']['suppress_version_warning'] = false;
$prefs['_GLOBAL']['sync_collection_workaround'] = false;
if(file_exists('/var/cpanel/calendarserver')) {
$domain = getenv('HTTP_HOST');
if( empty($domain) ) $domain = getenv('DOMAIN');
// Figure out the expected formatting based on username
$userName = (string) $_SERVER['_RCUBE'];
$userFormat = (string) '%l@%d';
if( strpos($userName, '/') === false) {
$userFormat = '%l';
}

$prefs['cPCardDAV'] = array(
   'name'     => 'cPanel CardDAV',
   'username' => $userFormat,
   'password' => '%p',
   'url'      => 'https://' . $domain . ':2080/addressbooks/' . $userFormat . '/addressbook/',
   'active'   => true,
   'fixed'    => array( 'name', 'username', 'password' ),
   'hide'     => false,
);
}
2
OK. Then we have maximum clarity.

When we upgrade to RHEL 9, then we will stay on PHP 8.0.x and no higher.

Thank you very much.
3
PHP 8.1 isn't supported unless you move to Roundcube 1.6.x but Roundcube 1.6.x also supports PHP 8.2 and PHP 8.3.
4
OK, that is good news. Excellent.

Are there differences in support between PHP 8.0, PHP 8.1 and PHP 8.2?

Is it irrelevant which version of PHP 8 we use and does Roundcube 1.5.x work equally well with all versions of PHP 8? Or should we take the precaution of sticking with the oldest, still secure version of PHP 8, in this case PHP 8.0.x (at least as long as RHEL 9 offers a secure 8.0.x)?
5
Roundcube 1.5.x support PHP 8 so if RHEL 9 is using PHP 8 you should be OK.
6
TLDR: Is it possible to run Roundcube 1.5.6 in a RHEL 9 environment without any problems?



Hello everyone,

we are currently using Roundcube version 1.5.4 in a RHEL 8 environment with PHP version "7.4.33".

Specifically, this is PHP "7.4.33-1.module+el8.8.0+17865+ef7eddfa".

The exact RHEL release is "Red Hat Enterprise Linux release 8.8 (Ootpa)".

We want to update to Roundcube 1.5.6 LTS at most for the time being, because we do not know whether we will be missing essential functionality if we update to Roundcube "1.6.6".

Now the question: If we first update Roundcube to version 1.5.6, is it then possible to update the operating system from RHEL 8 to RHEL 9 without any problems?

I mean, does the PHP version that comes with RHEL 9 by default harmonize with Roundcube 1.5.6 LTS?

As far as I know, RHEL 9 offers PHP version 8.0.

Has anyone had any experience with such a constellation?

If the PHP version is problematic under RHEL 9, should we install a more suitable PHP version then?

Or is it better to bite the bullet and upgrade to Roundcube 1.6.6 instead?

Answers would make me very happy
Scimgro
7
Issues & Bugs / Re: Stuck on Login successful. Redirecting
« Last post by SKaero on May 10, 2024, 09:03:15 AM »
I believe your running into this issue with cPanel: https://www.roundcubeforum.net/index.php/topic,30888.0.html
8
Issues & Bugs / Stuck on Login successful. Redirecting
« Last post by krentzis on May 09, 2024, 09:40:43 PM »
Hello,

I am trying to login to Roundcube through Webmail.mydomain.com

I am entering the right credentials and then I am stuck on
Login successful. Redirecting....
until it times out.

If I try to use the server IP ie
IP:2096
and do the same as above it will log me in Roundcube.

Also if I go to Roundcube through CPanel it will also work.

I think the problem occured after upgrading from Cloudlinux Shared to Cloudlinux Shared PRO

Also in roundcube log I get this
[CPANELVCFIMPORT: Touch file /home/USERNAME/.cpanel/vcards/.cpanel_vcf_import_info@DOMAIN.COM exists for info@DOMAIN.COM and cpanel_run_once is true, exiting]

I run WHM 120 Roundcube 1.6 and Cloudlinux Shared PRO

Can you please advice?

thanks
9
Roundcube Discussion / Re: 550 #5.1.0 Address rejected [WEBMAIL]
« Last post by SKaero on May 09, 2024, 07:48:57 PM »
You most likely have some DNS or something else on the mail server side setup incorrectly. Try testing using https://www.mail-tester.com/ and it should tell you what is wrong.
10
Roundcube Discussion / 550 #5.1.0 Address rejected [WEBMAIL]
« Last post by erickoooo on May 09, 2024, 04:34:11 PM »
Hello, I recently set up my webmail addresses (e.g. admin@example.com) using Roundcube and everything was seamless.

1. I can send messages from the addresses
2. I can receive messages from Wordpress (i.e notifications of password changes etc)
3. HOWEVER, when I try sending emails to the address via Gmail and Yahoo accounts, they all fail saying "address not found" - Gmail in particular gives me the error code is the subject line of this post

Anyone with an idea how to fix this? I am really frustrated and my reseller isn't doing much to help. Any help with be highly appreciated.

Thanks All
Pages: [1] 2 3 ... 10