Recent Posts

Pages: [1] 2 3 ... 10
1
Dear Team,

We are using Iredmail 1.4.2.We have recently upgraded the roundcube 1.5.5  due to vulnerability issues but now session timeout is not working. It's already there in config.inc.php.

// Session lifetime in minutes
$config['session_lifetime'] = 20;



2
Ubuntu 22.04, Roundcube 1.1.6

We needed to upgrade the server and when doing so, services stoped working!

Sending mail from Roundcube was one of them! Users can't send mail and I'm out of ideas to try...!

"An error occurred! SMTP-error (-1): Connecting to the server failed."

I have checked the logs, I have changed ports... I have NOT restarted the service since I can't find a service to restart!
Last option is of-course, to simply "sudo reboot" the server itself... That will do it! :-)

Pages suggests certificates are outdated... but how to solve remains a mystery!

Any ideas of a path forward in this issue!?
3
API Based Plugins / Re: Calendar plugin recommendation
« Last post by SKaero on March 26, 2024, 05:08:27 PM »
Looks like its a long standing issue with the plugin https://github.com/texxasrulez/calendar/issues/22
4
API Based Plugins / Re: Calendar plugin recommendation
« Last post by eMarcus on March 26, 2024, 10:59:27 AM »
Hi,

I would have exactly the very same question.

I tried tried the texxasrulez/calendar plugin, but the installation fails with a dependency error:

Code: [Select]
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.
                                                                                                                                                                                             
  Problem 1                                                                                                                                                                                   
    - Root composer.json requires texxasrulez/calendar ~0.0.7.0 -> satisfiable by texxasrulez/calendar[0.0.7].                                                                               
    - texxasrulez/calendar 0.0.7 requires roundcube/plugin-installer ~0.1.6 -> found roundcube/plugin-installer[0.1.6, ..., 0.1.10] but it conflicts with your root composer.json require (~0.
3.1).                                                                                                                                                                                         
                                                                                                                                                                                             
Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.                                                   

I am wondering if I can just downgrade the plugin-installer, or if I would break anything (0.3.1 -> 0.1.6 sounds a bit much of a downgrade...)

Could anyone comment on that, or advise me to another CALDAV plugin?

Thanks
Marcus.
5
General Discussion / Re: Error sending the read notice
« Last post by alain25 on March 25, 2024, 05:06:13 AM »
Hello,

Thank you for your reply, but when I receive an email with a reading notice, the notice is not sent.
So the recipient doesn't know if I've read the email correctly.

Does he need to configure anything?

Thanks a lot
6
Pending Issues / DB Error: [1062] Duplicate entry
« Last post by Ronald75 on March 25, 2024, 03:44:40 AM »
Hi all,

We have recently migrated to a new server (and updated to 1.6.6)

We now see some errors in the Roundcube.log which we are unsure if we need to address these:

Code: [Select]
roundcube[459130]: <nt5d6tbv> DB Error: [1062] Duplicate entry 'nt5d6tbviqkbtsvm63hm712pjp' for key 'session.PRIMARY' (SQL Query: INSERT INTO `session` (`sess_id`, `vars`, `ip`, `changed`) VALUES ('nt5d6tbviqkbtsvm63hm712pjp', 'dGVtcHxiOjE7bGFuZ3VhZ2V8czo1OiJubF9OTCI7', 'ip.ip.ip.ip', now())) in /var/www/webmail.knid.nl/program/lib/Roundcube/rcube_db.php on line 577 (POST /?_task=mail&_action=refresh)
roundcube[459130]: <73pr8snc> DB Error: [1062] Duplicate entry '73pr8sncjuivb0l282l2vs7glk' for key 'session.PRIMARY' (SQL Query: INSERT INTO `session` (`sess_id`, `vars`, `ip`, `changed`) VALUES ('73pr8sncjuivb0l282l2vs7glk', 'dGVtcHxiOjE7bGFuZ3VhZ2V8czo1OiJubF9OTCI7', 'ip.ip.ip.ip', now())) in /var/www/webmail.knid.nl/program/lib/Roundcube/rcube_db.php on line 577 (POST /?_task=mail&_action=refresh)

roundcube[459567]: <cn5ksnph> DB Error: [1062] Duplicate entry 'cn5ksnphs4metkp1n9nrnaq573' for key 'session.PRIMARY' (SQL Query: INSERT INTO `session` (`sess_id`, `vars`, `ip`, `changed`) VALUES ('cn5ksnphs4metkp1n9nrnaq573', 'dGVtcHxiOjE7bGFuZ3VhZ2V8czo1OiJubF9OTCI7', 'ip.ip.ip.ip', now())) in /var/www/webmail.knid.nl/program/lib/Roundcube/rcube_db.php on line 577 (POST /?_task=mail&_action=refresh)


We are unaware if these are causing problems or not as we have not yet received any calls from our users reporting issues.

We are running Roundcube on Ubuntu 22.04 with apache2
7
General Discussion / Re: Error sending the read notice
« Last post by SKaero on March 24, 2024, 02:04:07 PM »
There is a config option for how to handle the requests:
Code: [Select]
// Behavior if a received message requests a message delivery notification (read receipt)
// 0 = ask the user,
// 1 = send automatically,
// 2 = ignore (never send or ask)
// 3 = send automatically if sender is in my contacts, otherwise ask the user
// 4 = send automatically if sender is in my contacts, otherwise ignore
// 5 = send automatically if sender is a trusted sender, otherwise ask the user
// 6 = send automatically if sender is a trusted sender, otherwise ignore
$config['mdn_requests'] = 0;
8
If your using php-fpm you should make sure that the proxy server (most likely nginx) also allows for large files to be passed through.
9
General Discussion / Re: Ubuntu 20.04 : Storage server connection error
« Last post by alain25 on March 23, 2024, 06:04:03 AM »
Hello everyone,

I'm replying to myself, but it may help people.

If you see the error Storage server connection failed when you try to connect to Roundcube, it's probably because
- The Dovecot server is not working.

You can restart Dovecot with sudo systemctl restart dovecot and check its status with systemctl status dovecot.
- You are using a self-signed TLS certificate.

Roundcube requires a valid TLS certificate issued by a trusted certification authority, such as Let's Encrypt.
- Your TLS certificate has expired.

You can renew the Let's Encrypt TLS certificate with sudo certbot renew, then restart Postfix and Dovecot (sudo systemctl restart postfix dovecot).

You can also try adding a custom DNS entry to the /etc/hosts file, so that Roundcube can resolve the mail server hostname correctly.

Thanks a lot
10
General Discussion / Error sending the read notice
« Last post by alain25 on March 23, 2024, 05:58:17 AM »
Hello everyone,

When I send a message from outlook with the acknowledgement request and the reading notice. On roundube I receive the message but the reading notice is not sent.

Is there a plugin missing or a configuration problem in Roundcube?

Thanks a lot


Pages: [1] 2 3 ... 10