Roundcube Community Forum

 

Recent posts

#81
Release Discussion / changing mail host > no contac...
Last post by turbo - October 31, 2025, 09:07:20 PM
Hello,
using RC-1.6.0 I have to change the mail host for our users. I did this in the config file and in the database. Login was ok and all mailfolders with messages are shown. So far so good. What is missing is the addressbook. It is the build-in addressbook.  Reverting back to the "old" mail host, all contacts are there.

Anyone had this situation and know how to get the addressbook back when changing the mail host ?

Thank you.
#82
General Discussion / Re: Im confused from updating ...
Last post by dea75 - October 31, 2025, 08:40:09 PM
OK, I've commented try_files sections.
The error persist, no skin.

these are the errors in log:

*****************************
2025/11/01 01:22:57 [error] 1901155#1901155: *14 FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream, client: xxx.xxx.xxx.xxx, server: mail.xxx.xxx, request: "GET /vendor/autoload.php HTTP/2.0", upstream: "fastcgi://unix:/var/run/php/php8.2-fpm.sock:", host: "mail.xxx.xxx"
2025/11/01 01:22:57 [error] 1901155#1901155: *14 open() "/var/www/html/public_html/favicon.ico" failed (2: No such file or directory), client: xxx.xxx.xxx.xxx, server: mail.xxx.xxx, request: "GET /favicon.ico HTTP/2.0", host: "mail.xxx.xxx", referrer: "https://mail.xxx.xxx/vendor/autoload.php"
2025/11/01 01:23:40 [error] 1901155#1901155: *14 access forbidden by rule, client: xxx.xxx.xxx.xxx, server: mail.xxx.xxx, request: "GET /config/config.inc.php HTTP/2.0", host: "mail.xxx.xxx"
2025/11/01 01:27:50 [error] 1901154#1901154: *18 open() "/var/www/html/public_html/static.php/skins/elastic/deps/bootstrap.min.css" failed (20: Not a directory), client: xxx.xxx.xxx.xxx, server: mail.xxx.xxx, request: "GET /static.php/skins/elastic/deps/bootstrap.min.css?s=1759310275 HTTP/2.0", host: "mail.xxx.xxx", referrer: "https://mail.xxx.xxx/"
2025/11/01 01:27:50 [error] 1901154#1901154: *18 open() "/var/www/html/public_html/static.php/skins/elastic/styles/styles.min.css" failed (20: Not a directory), client: xxx.xxx.xxx.xxx, server: mail.xxx.xxx, request: "GET /static.php/skins/elastic/styles/styles.min.css?s=1759310266 HTTP/2.0", host: "mail.xxx.xxx", referrer: "https://mail.xxx.xxx/"
2025/11/01 01:27:50 [error] 1901154#1901154: *18 open() "/var/www/html/public_html/static.php/plugins/jqueryui/themes/elastic/jquery-ui.min.css" failed (20: Not a directory), client: xxx.xxx.xxx.xxx, server: mail.xxx.xxx, request: "GET /static.php/plugins/jqueryui/themes/elastic/jquery-ui.min.css?s=1759310265 HTTP/2.0", host: "mail.xxx.xxx", referrer: "https://mail.xxx.xxx/"
2025/11/01 01:27:50 [error] 1901154#1901154: *18 open() "/var/www/html/public_html/static.php/program/js/jquery.min.js" failed (20: Not a directory), client: xxx.xxx.xxx.xxx, server: mail.xxx.xxx, request: "GET /static.php/program/js/jquery.min.js?s=1759310271 HTTP/2.0", host: "mail.xxx.xxx", referrer: "https://mail.xxx.xxx/"
2025/11/01 01:27:50 [error] 1901154#1901154: *18 open() "/var/www/html/public_html/static.php/program/js/common.min.js" failed (20: Not a directory), client: xxx.xxx.xxx.xxx, server: mail.xxx.xxx, request: "GET /static.php/program/js/common.min.js?s=1759310265 HTTP/2.0", host: "mail.xxx.xxx", referrer: "https://mail.xxx.xxx/"
*****************************
#83
General Discussion / Re: Im confused from updating ...
Last post by Dmitry42 - October 31, 2025, 01:50:59 PM
yes try...and what about error.log and composer ?
#84
General Discussion / Re: ssl problems lately in rec...
Last post by SKaero - October 31, 2025, 12:48:00 AM
Chrome gives more details for SSL errors in the console but maybe Firefox doesn't, I don't have a site that has the issue to confirm.

I'm sure the issue isn't with Roundcube since Roundcube isn't responsible for the SSL encryption that is always handled by the web server.

If the error comes up only when viewing some HTML emails it most likely is due to something in the HTML in the email. Is there anyway you can send me the source of one of the emails that triggers the error?
#85
General Discussion / Re: ssl problems lately in rec...
Last post by akissz - October 30, 2025, 07:48:49 PM
Quote from: SKaero on October 30, 2025, 05:37:48 PMThat error shouldn't be related to the SSL error, what browser are you using?

Firefox 144.0.2

I also checked the server logs and there are no errors in the server log, only normal access log in the access log.

I believe this problem was not here for over 6 months of this year. It just started happening recently; I don't remember exactly when but I think after the last Roundcube update, but not sure.
#86
General Discussion / Re: ssl problems lately in rec...
Last post by SKaero - October 30, 2025, 05:37:48 PM
That error shouldn't be related to the SSL error, what browser are you using?
#87
General Discussion / Re: Im confused from updating ...
Last post by dea75 - October 30, 2025, 04:54:54 PM
OK !

this is my setting:


*************************
        root /var/www/html/public_html;
        index index.php;

        location / {
                try_files $uri $uri/ /index.php?q=$uri&$args;
        }

        location ~ ^/(README.md|INSTALL|LICENSE|CHANGELOG|UPGRADING)$ {
                deny all;
        }

        location ~ ^/(config|temp|logs|SQL|bin)/ {
                deny all;
        }

        location ~ /\. {
                deny all;
                access_log off;
                log_not_found off;
        }

        location ~ \.php$ {
                try_files $uri =404;
                fastcgi_pass unix:/var/run/php/php8.2-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                fastcgi_param PATH_INFO $fastcgi_path_info;
                include fastcgi_params;
        }
*************************

I should remove:

                try_files $uri =404;
and at this point:

location / {
                try_files $uri $uri/ /index.php?q=$uri&$args;
        }

how should I change the configuration?

Thanks !!

Luca
#88
General Discussion / Re: ssl problems lately in rec...
Last post by akissz - October 30, 2025, 03:37:29 PM
OK browser is showing this error
"SES_UNCAUGHT_EXCEPTION: DOMException: Permission denied to get property "href" on cross-origin object"

as well as linking to js files
/program/js/app.min.js?s=1748763912:35
/program/js/list.min.js?s=1748763912:33

I thought maybe the permissions were bad on server but I checked. I was able to load js directly from, example
domain.com /program/js/app.min.js
Loads the js fine.

I don't know what the error is from above or if the above error is even related to the SSL_ERROR_NO_CYPHER_OVERLAP error.
#89
General Discussion / Re: ssl problems lately in rec...
Last post by SKaero - October 30, 2025, 02:54:02 PM
It sounds like the HTML email your viewing is trying to load images from a server that has a SSL configuration problem. Try checking the browsers console that will likely give you more information about what file/domain is triggering the error.
#90
General Discussion / Re: ssl problems lately in rec...
Last post by akissz - October 30, 2025, 12:47:22 PM
Quote from: SKaero on October 30, 2025, 11:31:40 AMThat wouldn't be a Roundcube issue, it would be a issue with the web server SSL configuration.

You would think so right. But why would viewing messages in plain text always function fine. Then when you view in html it has the error sometimes? I read that it might be related to the clock?