Recent Posts

Pages: [1] 2 3 ... 10
1
I would like to view and search email archived files on roundcube and output the results to CSV and EXCEL files. It is known that roundcube's normal functions cannot output to CSV or EXCEL files. Is it possible to output email search results to CSV or EXCEL files using a plugin? If there is a better way, could you please tell me?
2
General Discussion / Re: Reading Pane
« Last post by bookings@leasinghamvillag on May 15, 2024, 11:37:45 AM »
Hi, Did you ever resolve the problem? I was fine until the latest update, but now I can't get rid of the Reading Pane, which is a real Pain!
3
Pending Issues / Re: Cloudflare 524 Error with Roudcube
« Last post by Disapper on May 15, 2024, 10:35:50 AM »
this here is the original file

Code: [Select]
<?php
$prefs
[&#39;_GLOBAL&#39;][&#39;suppress_version_warning&#39;] = false;
$prefs[&#39;_GLOBAL&#39;][&#39;sync_collection_workaround&#39;] = false;
$domain getenv(&#39;HTTP_HOST&#39;);
if( empty($domain) ) $domain getenv(&#39;DOMAIN&#39;);
// Figure out the expected formatting based on username 
$userName = (string) $_SERVER[&#39;_RCUBE&#39;];
$userFormat = (string) &#39;%l@%d&#39;; 
if( strpos($userName, &#39;/&#39;) === false) { 
    
$userFormat = &#39;%l&#39;; 
}
 
$prefs[&#39;cPCardDAV&#39;] = array( 
   
&#39;name&#39;     => &#39;cPanel CardDAV&#39;, 
   
&#39;username&#39; => $userFormat, 
   
&#39;password&#39; => &#39;%p&#39;, 
   
&#39;url&#39;      => &#39;https://&#39; . $domain . &#39;:2080/addressbooks/&#39; . $userFormat . &#39;/addressbook/&#39;, 
   
&#39;active&#39;   => true, 
   
&#39;fixed&#39;    => array( &#39;name&#39;, &#39;username&#39;, &#39;password&#39; ), 
   
&#39;hide&#39;     => false, 
);

?>


this one is yours

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,
);
}

This is the only difference between the two
Code: [Select]
if(file_exists('/var/cpanel/calendarserver')) {

which I added to my file and it still didn't work.
4
Issues & Bugs / Sending Emails with Postfix and Dovecot through Roundcube
« Last post by amg69000 on May 15, 2024, 10:24:36 AM »
So I made a mail server with postfix and dovecot on my debian 12 server, but when I try to send an email from the roundcube interface I get an error saying "SMTP Error (250): Authentication failed.". Can you help me?
5
Pending Issues / Re: Cloudflare 524 Error with Roudcube
« Last post by MagdAlmuntaser on May 14, 2024, 09:37:13 PM »
I`ve do this but isin`t work for me.

Are you sure you edited the file correctly? You can edit it using FileZilla to ensure proper editing. The file to be edited is:

Code: [Select]
/usr/local/cpanel/base/3rdparty/roundcube/plugins/carddav/config.inc.php
Or you can download the file from the attachments and replace it.
6
Pending Issues / Re: Cloudflare 524 Error with Roudcube
« Last post by Disapper on May 14, 2024, 07:03:19 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,
);
}


I`ve do this but isin`t work for me.
7
General Discussion / Re: List Columns and Preview Pane questions
« Last post by whathappened on May 14, 2024, 04:48:25 PM »
I went to the trouble of registering to voice my complaint against the new theme. It is awful. The information I need is all crammed up in a little list. I can't tell which subject goes with which sender. Who on earth designed this new theme? I have to preview an email in order to delete it? How can we get back to something useable? I'm going to have to install Thunderbird and be done with Roundcube.
8
SVN Discussion / Re: Data for mailing list
« Last post by JohnDoh on May 14, 2024, 02:55:33 PM »
Assuming you are running 1.6.x then when you upload a CSV file (comma separated) you should see a mapping screen that lets you choose the fields. You can find an example of a CSV file here: https://github.com/roundcube/roundcubemail/blob/master/tests/src/Csv2vcard/tb_plain.csv there are other examples in that folder as well.
9
Requests / Re: add a delete button to message summary
« Last post by JohnDoh on May 14, 2024, 02:53:09 PM »
This is coming to the Elastic skin (the current default) in the next version (1.7). Example attached.
10
General Discussion / Re: List Columns and Preview Pane questions
« Last post by Angry-User on May 14, 2024, 10:36:52 AM »
Is there an answer to the questions about removing the preview pane, and if so, what is it?   Thanks-
Pages: [1] 2 3 ... 10