Recent Posts

Pages: [1] 2 3 ... 10
1
Roundcube Discussion / Copying an email to folders
« Last post by nhdesign on Today at 12:03:19 PM »

 Hi,

I have deleted emails and now they are in trash.
When I realize days later I want one back in the inbox, when I copy it from trash to the inbox, it does not keep the original received date, it takes the data time of when I copied it back.
How do I keep the original date?

 Thanks,
 nhdesign


2
Theme Releases / Re: Elastic2022
« Last post by Seb1k on Today at 09:47:16 AM »
Up !

+ Light mode
+ Bugs corrected
+ Swipe plugin

I think that the roundcube team should look at it to add it to the official release...
3
API Based Plugins / Re: Alter config in startup
« Last post by SKaero on May 17, 2024, 01:30:17 PM »
4
When I add a couple of emails of Blocked Senders, there is a little notification that says something to the effect "already added". SO WHY ARETHE EMAILS STILL COMING INTO MY INBOX? Does Blocked Senders work??
5
API Based Plugins / Alter config in startup
« Last post by dkemens on May 17, 2024, 11:22:52 AM »
Hi all,

I'm building a plugin to alter the product name (captured from a separate system) on startup. Unfortunately, it seems like the template loads before the plugin does it's business. In my template, I have

Code: [Select]
<roundcube:object name="productname">
I've tried altering this to

Code: [Select]
<roundcube:var name="config:product_name">
But it seems to make no difference.

The plugin does this:

Code: [Select]
    public function init()
    {
        $this->add_hook('startup', [$this, 'bootstrap']);
    }

    public function bootstrap($args)
    {
        Brand::init();
        $rcMail = rcmail::get_instance();

        $rcMail->config->set('product_name', Brand::getMeta('siteName'));
    }

I've tried moving the
Code: [Select]
add_hook and all logic inside of an
Code: [Select]
onload() method - but I haven't found any success yet. Anybody have any thoughts/tips?

Thanks!
6
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

7
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.
8
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.
9
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
10
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?
Pages: [1] 2 3 ... 10