Recent posts
#1
Release Discussion / Re: Re-login to Roundcube with...
Last post by SKaero - Today at 04:34:24 PMI would use a header redirect that way the login can be handled by the other part of the plugin that is already working.
#2
Release Discussion / Re: Re-login to Roundcube with...
Last post by beerzone - Today at 03:55:58 PMI don't understand, how to redirect back to the login.
Now my ready function is like this:
I've tried to use $rcmail->login("new_user*master_user", "master_password", "localhost", false); instead of $this->authenticate($args);. New user mailbox is opend for a second and then redirects to empty login page.
How to redirect back to the login from the ready function correctly?
Now my ready function is like this:
Code Select
function ready($args)
{
if (!empty($_GET['_autologin'])){
if ($_GET['_user'] != $args['user']){
$rcmail = rcmail::get_instance();
$rcmail->logout_actions();
$rcmail->kill_session();
$this->authenticate($args);
}
}
return $args;
}
If I send GET request with autologin parameter first time, the users mailbox is opened. Then I send GET request with new user. Login page with new username and empty password is opend. When I send GET request with new user again, the new users mailbox is opend.I've tried to use $rcmail->login("new_user*master_user", "master_password", "localhost", false); instead of $this->authenticate($args);. New user mailbox is opend for a second and then redirects to empty login page.
How to redirect back to the login from the ready function correctly?
#3
Release Discussion / Re: Re-login to Roundcube with...
Last post by SKaero - Today at 12:02:12 PMThere 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.
#4
Release Discussion / Re: Re-login to Roundcube with...
Last post by beerzone - Today at 09:00:08 AMHow should I logout correctly?
Code Select
function ready($args)
{
if (!empty($_GET['_autologin'])){
rcube::console("Logout");
$task = 'logout'; // What code must be here?
}
return $args;
}
#5
Roundcube Discussion / Re: [SOLVED] Keycloak and Roun...
Last post by jellydrink - Today at 04:27:35 AMsorry if I`m out of topic.
Is your Dovecot configuration compatible with authentication via the Thunderbird mail client?
Is your Dovecot configuration compatible with authentication via the Thunderbird mail client?
#6
Roundcube Discussion / Re: Limited Password length
Last post by aconti - April 28, 2025, 02:14:50 PMits 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?
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?
#7
Roundcube Discussion / Re: Can't change view
Last post by culinanrr1 - April 28, 2025, 07:15:40 AMHey,
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!!
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!!
#8
Older Versions / Re: "Archive" folder function?
Last post by SKaero - April 25, 2025, 10:41:09 AMRoundcube 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.
#9
Older Versions / "Archive" folder function?
Last post by tuzka - April 25, 2025, 10:18:21 AMHi 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!
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!
#10
Pending Issues / Re: Failed to start roundcube-...
Last post by SKaero - April 24, 2025, 06:42:50 PMI'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.
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.