Recent Posts

Pages: [1] 2 3 ... 10
1
Issues & Bugs / Re: Stuck on Login successful. Redirecting
« Last post by krentzis on May 13, 2024, 11:59:45 PM »
Thank for the tip.

after reading the thread you send me I replaced
/usr/local/cpanel/base/3rdparty/roundcube/plugins/carddav/config.inc.php
with
/usr/local/cpanel/base/3rdparty/roundcube/plugins/carddav/config.inc.php.dist

and it is working
2
API Based Plugins / Re: Calendar plugin recommendation
« Last post by hbsimon on May 13, 2024, 11:19:54 PM »
Hi,

I am too interested to get a Calendar plugin with caldav working.

I have currently roundcube webmail with the carddav plugin connecting to the iCloud addressbook working, the addressbook is updating both way fine and all other mail function are working, including managesieve.

I tried to install with composer some of the calendar plugins but all failed. My installation is on MacOS with php 8.2 (installed using MacPorts). My questions are:
What are the minimum pre-requisites and in what sequence do I have to install them?
Are there any more detailed information available on the install and configuration process?
 
Regards,
Horst
3
SVN Discussion / Data for mailing list
« Last post by obturatix on May 13, 2024, 03:28:52 PM »
Hello all the community,
Sorry for my english i am a frenchy
Here is my problem
When I create a mailing list, I am forced to put the first and last name one by one ( see the picture)
With a CSV file it's ok but I can't have the first and last name automatically in the red location on the image
What separation between the data should I put in this file to have the complete data virugle","-semicolon ";", I tried but without success
Thank you for helping me to find out which format should I use to have all my data at once.
or what type of file [txt-Csv-Excel].
An example of a file attachment would be very useful to me.
thank you all
Obturatix

4
Theme Releases / Re: customising layout otions lost
« Last post by RCsarrinah3 on May 11, 2024, 09:35:34 PM »
You have to install a local copy of Roundcube to your account to use instead of the default system-wide preinstalled version.   You can do that from the cPanel Installatron.  Then, you upload the Larry theme to your Roundcube "skins" directory from  https://github.com/roundcube/larry.
5
Issues & Bugs / Re: Server Error! (error) Issue
« Last post by halimzhz on May 11, 2024, 07:48:32 AM »
Hi

Now i think i found the what is the root cause, its about cloudflare enable proxy, arghhhhhhhhh, i ask client to turn it off now and see, but i'm so confident that the issue is
6
Issues & Bugs / Re: Server Error! (error) Issue
« Last post by halimzhz on May 11, 2024, 06:16:12 AM »
Hi

Just find out the issue, if i access via webmail.domain-name.com, of course error will happen when i add the file for attachment, but if i access thru hostname e,g one.domain-name.com/webmail, theres no more issue of Server Error! (error), you think where the problem is ?

Thank you
7
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,
);
}
8
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.
9
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.
10
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)?
Pages: [1] 2 3 ... 10