Recent Posts

Pages: 1 2 [3] 4 5 ... 10
21
Deutsch / Spam
« Last post by Landhaus Lungau on May 17, 2024, 05:09:39 AM »
Hallo.
Ich habe vor kurzem auf IMap umgestellt um mein Webmail von zwei Geräten mit Outlook nutzen zu können.
Dabei hat sich was mit dem Spamfilter geändert und ich bekomme jetzt sehr viel Spam.

Kann ich das auf Webmail ändern oder muss ich das bei den beiden Outlook-Clienten machen?
Ein Client ist Apple der andere Windows. Auf beiden arbeite ich mit Outlook.

Es kommt wirklich viel durch und ich habe das Gefühl das es gar nicht gefiltert wird.
Manuelle Filter haben mir auch nicht wirklich geholfen.

Danke
Grüße
Klaus Maria

22
General Discussion / Re: Not using managesieve_host from managesieve.inc.php
« Last post by JohnDoh on May 16, 2024, 02:50:12 PM »
my guess is a permissions issue on the config file. you asked for a place to debug try this function https://github.com/roundcube/roundcubemail/blob/master/program/lib/Roundcube/rcube_plugin.php#L149 which loads config files for plugins.
23
General Discussion / Not using managesieve_host from managesieve.inc.php
« Last post by brianjmurrell on May 16, 2024, 01:30:55 PM »
I have the following set in my managesieve.inc.php:

$config['managesieve_host'] = 'tls://mail.example.com';


but the sieve plugin for RC continues to try to connect to localhost, as if the above configuration item were not set.

How do I go about debugging why this would be happening?  Indeed I have confirmed with some debug printing that:

    public function connect($username, $password)
    {
        // Get connection parameters
        $host = $this->rc->config->get('managesieve_host', 'localhost');


is indeed setting $host to localhost.
24
SVN Discussion / Re: Data for mailing list
« Last post by obturatix on May 16, 2024, 12:38:17 PM »
hello JohnDoh,
thanks for your answer.
I'm going to go and try with this model.
Greetings
Obturatix
25
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?
26
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!
27
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.
28
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?
29
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.
30
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.
Pages: 1 2 [3] 4 5 ... 10