Roundcube Community Forum

 

Recent posts

#1
Release Discussion / RC 1.7.0 strange behaviour
Last post by syncgw - Today at 09:39:44 AM
Hi,
i created a plugin called identity_switch which work fine for a long time and many RoundCube releases. Just when installing or upgrading to 1.7.0 strange things happens:

1. Plugin creates a drop down menu called div id="identity_switch_menu" as in previous releases.
2. The div contains a hidden drop down menu called div id="identity_switch_dropdown".
4. Inside this div a unordered list ul with all account available were created as li.

If I click on the identity_switch_menu, identity_switch_dropdown is unhidden and user can select a identity. That was the behavior in RC < 1.7

What happens now is: After approx. 2 seconds the whole ul is simply deleted by some RoundCube Javascript code I'm not able to find. I tried to replace program/js and the skin folder and the plugins/jqueryui folder with 1.6.14 files, but still ul is deleted.

Any suggestions how I can find the code deleting ul (and understand how I can build a work around)?
#2
Release Discussion / Re: latest UI change for incom...
Last post by ukeleleihuu - May 14, 2026, 02:55:56 PM
I posted a workaround that works locally in the browser using the Stylus plugin in Firefox. It adds a glowing green dot. You can edit the dot to be whatever you want and even specify the color.

    .messagelist td.subject span.msgicon.status.unread::before {
        content: "●";
        color:#0dff00;
        font-size: 16px;
        animation: pulseUnread 1s infinite;
    }

    @keyframes pulseUnread {
        0%   { opacity: 0.2; }
        50%  { opacity: 1; }
        100% { opacity: 0.2; }
    }

#3
Release Discussion / Re: latest UI change for incom...
Last post by ukeleleihuu - May 14, 2026, 01:46:09 PM
I use RC through Cloudron, so I'm unsure what they use in the backend (master or wtv else there is). The thread seems old though and on my end the change happened very recently. In any case, I take it that it's impossible to have that fixed easily, right? Non-coder here BTW. Also, Cloudron apps are read-only. I can't edit the code even if I wanted.
#4
Release Discussion / Re: latest UI change for incom...
Last post by JohnDoh - May 14, 2026, 03:51:44 AM
#5
Theme Releases / Re: Elastic2022
Last post by PapaCan - May 13, 2026, 05:14:45 PM
Quote from: Seb1k on October 26, 2025, 02:15:48 PMHi !

Just corrected a few thing and added a Popup composer in the lastest version !



Hi, Seb1k,
I have some feedback on the UI. Could you add a delete icon to the email list interface when selecting more than one email or checking "select all"? Also, the "Compose" button should ideally have dynamic width depending on the text size, or at least truncate with three dots (...) if there are limitations (though I know it's doable because I fixed it manually). The interface really lacks these options. Thanks for the theme! Really one of best I gues for this web client

#6
Pending Issues / Re: Resource loading problem (...
Last post by Alban - May 13, 2026, 04:04:34 PM
Thank you so much for your reply, it put me on the right track.

Indeed, I hadn't realized it worked with HTTP.

I added:

<Files "static.php">
SetEnv no-gzip 1

<IfModule mod_headers.c>
Header unset Content-Encoding
</IfModule>
</Files>

to the .htaccess file
#7
Pending Issues / Re: Resource loading problem (...
Last post by SKaero - May 13, 2026, 03:18:31 PM
There is some sort of issue with your web server, you may want to check the logs there to see if they have anymore details. There look to be a bunch of different possible causes https://stackoverflow.com/questions/58215104/whats-the-neterr-http2-protocol-error-about I see the accepted answer references a issue with OVH which it looks like your using so you may want to check that.
#8
Release Discussion / latest UI change for incoming ...
Last post by ukeleleihuu - May 13, 2026, 02:53:26 PM
Hi all,

I'm not sure when or what changed exactly, but recently the UI looks different for new unread mail. It's hard to spot if there is any new mail at a glance. I use dark mode all the time. I believe there was a yellow dot by unread mail or am I misremembering things. Can I bring it back?
#9
Pending Issues / Resource loading problem (v1.7...
Last post by Alban - May 13, 2026, 09:52:57 AM
Hello everyone,

I tried to update from version 1.6.15 to 1.7.0, but I encountered numerous errors, so I reinstalled everything (including the database).

I designated the public_html folder as the root directory.

I can access the login page, but no other resources load (images, CSS, JS).

However, when I use the absolute URL, the resources are accessible. :-/
#10
Requests / Setting default Cc address
Last post by orwel01 - May 13, 2026, 07:09:22 AM
I'd like to be able to set a specific Cc address in the Compose window settings (under Settings/Identities), so that every email I compose automatically includes that specific address in the Cc field.
Currently, there's only an option to add an address to the Bcc field, but I imagine it wouldn't be too difficult to add the option to set a default Cc address as well. Thank you,