Roundcube Community Forum

 

Recent posts

#71
Release Discussion / Re: Re-login to Roundcube with...
Last post by SKaero - April 29, 2025, 12:02:12 PM
There is an example of how to log a user out in the autologout plugin https://github.com/roundcube/roundcubemail/blob/master/plugins/autologout/autologout.php you can then redirect to the login again to login with the new account.
#72
Release Discussion / Re: Re-login to Roundcube with...
Last post by beerzone - April 29, 2025, 09:00:08 AM
How should I logout correctly?
    function ready($args)
    {
        if (!empty($_GET['_autologin'])){
            rcube::console("Logout");
            $task = 'logout'; // What code must be here?
        }
        return $args;
    }
#73
Roundcube Discussion / Re: [SOLVED] Keycloak and Roun...
Last post by jellydrink - April 29, 2025, 04:27:35 AM
sorry if I`m out of topic.

Is your Dovecot configuration compatible with authentication via the Thunderbird mail client?
#74
Roundcube Discussion / Re: Limited Password length
Last post by aconti - April 28, 2025, 02:14:50 PM
its a postfix mail server with mariadb, Dovecot and fronted by Roundcube

So need to find out who is responsable for the authentication (thought it was Dovecot) and confirm old hash method being used and find instructions to change that. Sounds right?

#75
Roundcube Discussion / Re: Can't change view
Last post by culinanrr1 - April 28, 2025, 07:15:40 AM
Hey,

I still have this issue. Did someone manage to resolve it? I only use it on webmail. Do you have any other recommendations?

Thank you!!
#76
Older Versions / Re: "Archive" folder function?
Last post by SKaero - April 25, 2025, 10:41:09 AM
Roundcube doesn't move or filter email that is likely being done either by filtering software on the mail server or as you mentioned another mail client that is connected to the mail server.
#77
Older Versions / "Archive" folder function?
Last post by tuzka - April 25, 2025, 10:18:21 AM
Hi all, please help!
We have some issue: A lot of messages - even new messages - are being moved to the Archive folder by themselves. This is unwanted behavior. We don't know if we have enabled it somewhere and we don't know how.  Or another mail client is doing it. We would need to find out exactly how Roundcube should behave. Our provider has the old Roundcube Webmail 1.1.5.

I can't find some end-user manual or information, what should "Archive" folder do.

Thank You!
#78
Pending Issues / Re: Failed to start roundcube-...
Last post by SKaero - April 24, 2025, 06:42:50 PM
I'm going to guess that is a service that comes in the Ubuntu packaged version of Roundcube since its not part of the core Roundcube package. You'll likely need to report it to the Ubuntu package maintainer so they can fix it.

I'm guessing its designed to run the <RC root>/bin/cleandb.sh script but that really isn't something that needs to be done often. I would think you could safely disable it and it wouldn't cause any harm.
#79
Pending Issues / Failed to start roundcube-clea...
Last post by C983746 - April 24, 2025, 11:33:07 AM
I recently upgraded to Ubuntu 25.04 and started getting this error message.

Not sure where to begin to resolve it.

Can anyone give me detailed instructions to resolve it?     Roundcube appears to be running OK and not sure how concerned I should be about the cleandb service?



roundcube-cleandb.service
Failed to start roundcube-cleandb.service - Purge Roundcube database: remove old records that were marked as deleted.

CODE_FILE
    src/core/job.c
CODE_FUNC
    job_emit_done_message
CODE_LINE
    818
INVOCATION_ID
    f48f6a339d3f4f70a922a531d23dcc09
JOB_ID
    49512
JOB_RESULT
    failed
JOB_TYPE
    start
MESSAGE_ID
    be02cf6855d2428ba40df7e9d022f03d
PRIORITY
    3
SYSLOG_FACILITY
    3
SYSLOG_IDENTIFIER
    systemd
TID
    1
UNIT
    roundcube-cleandb.service
_BOOT_ID
    1856bb88dbab4de68516eeafc6dac6a8
_CAP_EFFECTIVE
    1ffffffffff
_CMDLINE
    /sbin/init text
_COMM
    systemd
_EXE
    /usr/lib/systemd/systemd
_GID
    0
_HOSTNAME
    <myservername appears here>
_MACHINE_ID
    8c5c743187c44790a47bd50da8aeb3f8
_PID
    1
_RUNTIME_SCOPE
    system
_SELINUX_CONTEXT
    unconfined
_SOURCE_REALTIME_TIMESTAMP
    1745508288955457
_SYSTEMD_CGROUP
    /init.scope
_SYSTEMD_SLICE
    -.slice
_SYSTEMD_UNIT
    init.scope
_TRANSPORT
    journal
_UID
    0
__CURSOR
    s=77723eb2a7e9406c92495b917a4754a5;i=4b46919;b=1856bb88dbab4de68516eeafc6dac6a8;m=694c87e7c;t=63387d1840448;x=21221cb20b1f23c4
__MONOTONIC_TIMESTAMP
    28265971324
__REALTIME_TIMESTAMP
    1745508288955464
__SEQNUM
    78932249
__SEQNUM_ID
    77723eb2a7e9406c92495b917a4754a5
#80
Release Discussion / Re: Re-login to Roundcube with...
Last post by SKaero - April 24, 2025, 09:42:19 AM
You need to remove the task at the top of the file:
public $task = 'login';

The $task variable locks the plugin down to only run on the specified task. Removing it will allow you to check for new incoming requests to login to other accounts.