Recent posts
#41
Pending Issues / Re: Can't send or forward mail
Last post by SKaero - April 10, 2025, 11:58:57 AMCheck your browser JS console. If you have any plugins enabled try disabling them and see if that makes a deference.
#42
Pending Issues / Can't send or forward mail
Last post by Catoman - April 10, 2025, 11:18:56 AMHi,
I upgraded from 1.6.7 to 1.6.10 a while ago and discovered today that i can't send or forward
mail anymore via Roundcube webmail. When i click the "Send" button nothing happens.
I usually use Thunderbird for mail so that's why i noticed just now.
My webmail runs in a Debian 12 KVM host and so do my Postfix mailserver. Port 25, 143 and 587 are open from webmail to mailserver.
I can't see anything in the Apache logs and there is nothing in the mailserver log either.
My Letsencrypt cert is valid on both servers.
New mails that arrive show up in Roundcude GUI and i can read them without any problem
Any clues how to fix this ?
How do i get Roundcube to log more ?
BR
Johan
I upgraded from 1.6.7 to 1.6.10 a while ago and discovered today that i can't send or forward
mail anymore via Roundcube webmail. When i click the "Send" button nothing happens.
I usually use Thunderbird for mail so that's why i noticed just now.
My webmail runs in a Debian 12 KVM host and so do my Postfix mailserver. Port 25, 143 and 587 are open from webmail to mailserver.
I can't see anything in the Apache logs and there is nothing in the mailserver log either.
My Letsencrypt cert is valid on both servers.
New mails that arrive show up in Roundcude GUI and i can read them without any problem
Any clues how to fix this ?
How do i get Roundcube to log more ?
BR
Johan
#43
General Discussion / CalDav Plugin issue in RoundCu...
Last post by sheri207 - April 08, 2025, 05:41:35 AMHey!
I am working on CalDav plugin integration in my Roundcube mailcow. I am using this plugin
https://packagist.org/packages/kolab/calendar
The issue is that after following all installation methods, when I try to save the calendar event, it gives my FAILED TO SAVE CHANGES error on Roundcube. There is no error in docker logs of that container mailcow and I also checked the /web/rc/logs/error.logs no errors there also.
Have anyone came across this issue while integrating CalDaV in RoundCube mailcow. I followed each and every step of documentation and just changed these lines inside my config file of calendar plugin
I am working on CalDav plugin integration in my Roundcube mailcow. I am using this plugin
https://packagist.org/packages/kolab/calendar
The issue is that after following all installation methods, when I try to save the calendar event, it gives my FAILED TO SAVE CHANGES error on Roundcube. There is no error in docker logs of that container mailcow and I also checked the /web/rc/logs/error.logs no errors there also.
Have anyone came across this issue while integrating CalDaV in RoundCube mailcow. I followed each and every step of documentation and just changed these lines inside my config file of calendar plugin
Code Select
$config['calendar_driver'] = "caldav";
$config['calendar_caldav_server'] = "http://mailcowdockerized-sogo-mailcow-1:20000/SOGo/dav/";
$config['calendar_caldav_url'] = 'http://mailcowdockerized-sogo-mailcow-1:20000/SOGo/dav/%u/Calendar/';
Any help would be highly appreciated. #44
Pending Issues / Re: Errore SMTP (550):
Last post by JohnDoh - April 07, 2025, 04:04:19 PMThe message comes from your email provider. Probably they have some anti-spam stuff that automatically blocks accounts which try to send email to a certain number of invalid recipients in a given time frame. You should contact them for more information.
#45
Pending Issues / Errore SMTP (550):
Last post by cibosociale - April 07, 2025, 05:06:16 AMhello i'm new here and i have no knowledge about this type of error someone is capable to help me i'm in really big trouble here
the error is the following: Errore SMTP (550): inserimento del destinatario "[email protected]" non riuscito (Account [email protected] currently blocked for sending to too many
invalid recipients)
is written in italian because i'm italian if there is any italian guy that can help me i appriciate thank u
the error is the following: Errore SMTP (550): inserimento del destinatario "[email protected]" non riuscito (Account [email protected] currently blocked for sending to too many
invalid recipients)
is written in italian because i'm italian if there is any italian guy that can help me i appriciate thank u
#46
Pending Issues / Docker and PostgreSQL
Last post by morsecode1965 - April 04, 2025, 08:15:44 AMI cannot get Roundcube to connect to PostgreSQL using the official roundcube container and docker compose files. I get the same behavior/error when I use docker-compose-fpm-alpine.yaml and a modified version of docker-compose-mysql.yaml (docker-compose-psql.yaml, see attached. Note the containers names are _2 so that both can run at once.).
I get the dreaded message when I connect to Roundcube web front-end:
Oops... something went wrong!
An internal error has occurred. Your request cannot be processed at this time.
I am seeing the following same errors in the roundcubemail logs for both compose files.
wait-for-it.sh: waiting 30 seconds for roundcubedb:5432
wait-for-it.sh: roundcubedb:5432 is available after 0 seconds
Write Docker config to /var/www/html/config/config.docker.inc.php
ERROR: SQLSTATE[HY000] [2002] No such file or directory
ERROR: Failed to connect to database
Failed to initialize/update the database. Please start with an empty database and restart the container.
Starting the roundcubemail container creates the www/config/config.docker.inc.php file:
<?php
$config['db_dsnw'] = 'pgsql://roundcube:roundcube@roundcubedb:5432/roundcube';;
$config['db_dsnr'] = '';
$config['imap_host'] = 'localhost:143';
$config['smtp_host'] = 'localhost:587';
$config['username_domain'] = '';
$config['temp_dir'] = '/tmp/roundcube-temp';
$config['skin'] = 'elastic';
$config['request_path'] = '/';
$config['plugins'] = array_filter(array_unique(array_merge($config['plugins'], ['archive', 'zipdownload'])));
(why isn't there a '?>' at the end of the file?)
I am able to connect to the PostgreSQL database running in roundcubedb after installing postgresql-client in roundcubemail and running
psql -h roundcubedb -U roundcube -d roundcube
Any recommendations on how to resolve this? What am I missing?
I get the dreaded message when I connect to Roundcube web front-end:
Oops... something went wrong!
An internal error has occurred. Your request cannot be processed at this time.
I am seeing the following same errors in the roundcubemail logs for both compose files.
wait-for-it.sh: waiting 30 seconds for roundcubedb:5432
wait-for-it.sh: roundcubedb:5432 is available after 0 seconds
Write Docker config to /var/www/html/config/config.docker.inc.php
ERROR: SQLSTATE[HY000] [2002] No such file or directory
ERROR: Failed to connect to database
Failed to initialize/update the database. Please start with an empty database and restart the container.
Starting the roundcubemail container creates the www/config/config.docker.inc.php file:
<?php
$config['db_dsnw'] = 'pgsql://roundcube:roundcube@roundcubedb:5432/roundcube';;
$config['db_dsnr'] = '';
$config['imap_host'] = 'localhost:143';
$config['smtp_host'] = 'localhost:587';
$config['username_domain'] = '';
$config['temp_dir'] = '/tmp/roundcube-temp';
$config['skin'] = 'elastic';
$config['request_path'] = '/';
$config['plugins'] = array_filter(array_unique(array_merge($config['plugins'], ['archive', 'zipdownload'])));
(why isn't there a '?>' at the end of the file?)
I am able to connect to the PostgreSQL database running in roundcubedb after installing postgresql-client in roundcubemail and running
psql -h roundcubedb -U roundcube -d roundcube
Any recommendations on how to resolve this? What am I missing?
#47
News & Announcements / Re: want a new release : 70 is...
Last post by alec - April 03, 2025, 04:42:30 AMThe list contains mostly new features not fixes. Most of the fixes were backported to 1.6.
#48
General Discussion / Re: Massive PHP Warning: Unde...
Last post by alec - April 03, 2025, 04:40:18 AM1.5 is in low maintenance mode, i.e. critical or security fixes only.
#49
General Discussion / Re: Massive PHP Warning: Unde...
Last post by langeman - April 03, 2025, 02:46:32 AMI tried roundcubemail 1.6.10 from the remi-repo, works perfectly, the error disappeared 
Since 1.5.9 is an LTS version, shouldn´t it be fixed in this version also?

Since 1.5.9 is an LTS version, shouldn´t it be fixed in this version also?
#50
News & Announcements / Re: want a new release : 70 is...
Last post by SKaero - April 02, 2025, 03:44:00 PMThe items that you listed with go into Roundcube 1.7, there are still outstanding items before a release can be made: https://github.com/roundcube/roundcubemail/milestone/98