Recent posts
#11
General Discussion / Re: Configuration of view scre...
Last post by JohnDoh - June 26, 2025, 11:36:44 AMThe website has screenshots of how the Elastic skin looks at different resolutions. What are you seeing that's different?
#12
Pending Issues / Problem with non-standard pass...
Last post by Themdall - June 26, 2025, 04:26:53 AMWhen a user has non-standard characters (Polish characters) in their login password, they cannot log in to their email via roundcube. They receive the message "Invalid user name or password".
Email program (Thunderbird and Outlook) log in to the mail server without any problem with this password.
RoundCube 1.6.10
PHP 8.3.17
Apache 2.4.58
Hmail server
Only two info in log rcube:
Login failed for [email protected] against localhost from 10.0.10.17. LOGIN: Invalid user name or password.
PHP Deprecated: Function utf8_encode() is deprecated in ...\program\lib\Roundcube\rcube_db.php on line 1135
Email program (Thunderbird and Outlook) log in to the mail server without any problem with this password.
RoundCube 1.6.10
PHP 8.3.17
Apache 2.4.58
Hmail server
Only two info in log rcube:
Login failed for [email protected] against localhost from 10.0.10.17. LOGIN: Invalid user name or password.
PHP Deprecated: Function utf8_encode() is deprecated in ...\program\lib\Roundcube\rcube_db.php on line 1135
#13
General Discussion / Configuration of view screen
Last post by annahi - June 25, 2025, 10:55:03 AMDear Roundcube,
We look at webmail using your software on Firefox, and cannot work out how to display the folders sidebar, or indeed how to configure the view screen.
We switched from Elastic to Larry, which solves the problem, but we don't like the interface, so can you tell us how to arrive at an Elastic display screen with the following columns from left to right:
1 Dark blue control icons
2. Folder list – Inbox, Sent, Trash etc
3. List of emails
4. Email reader pane
Many thanks,
annahi
We look at webmail using your software on Firefox, and cannot work out how to display the folders sidebar, or indeed how to configure the view screen.
We switched from Elastic to Larry, which solves the problem, but we don't like the interface, so can you tell us how to arrive at an Elastic display screen with the following columns from left to right:
1 Dark blue control icons
2. Folder list – Inbox, Sent, Trash etc
3. List of emails
4. Email reader pane
Many thanks,
annahi
#14
Theme Releases / Re: Creating a Customizable He...
Last post by JohnDoh - June 24, 2025, 08:33:07 AMhere is a very basic example which might help you get started. you can't just add a div, you need to add some CSS as well to define the new layout.
also i suggest you extend the Elastic skin not modify the core files so that your customization can survive updates.
Code Select
diff --git a/skins/elastic/templates/includes/footer.html b/skins/elastic/templates/includes/footer.html
index ec64cbcae..8e78c27da 100644
--- a/skins/elastic/templates/includes/footer.html
+++ b/skins/elastic/templates/includes/footer.html
@@ -3,6 +3,7 @@
<roundcube:if condition="config:support_url" />
<a href="<roundcube:var name='config:support_url' />" target="_blank" id="supportlink" class="hidden"><roundcube:label name="support" /></a>
<roundcube:endif />
+<div id="xxfooter">xxfooter</div>
<roundcube:endif />
<roundcube:object name="message" id="messagestack" />
diff --git a/skins/elastic/templates/includes/layout.html b/skins/elastic/templates/includes/layout.html
index 90a837414..b25f26e31 100644
--- a/skins/elastic/templates/includes/layout.html
+++ b/skins/elastic/templates/includes/layout.html
@@ -40,7 +40,8 @@
</script>
<roundcube:endif />
</head>
-<body class="task-<roundcube:exp expression="env:error_task ?: env:task ?: 'error'"> action-<roundcube:exp expression="asciiwords(env:action, true, '-') ?: 'none'">">
+<body class="task-<roundcube:exp expression="env:error_task ?: env:task ?: 'error'"> action-<roundcube:exp expression="asciiwords(env:action, true, '-') ?: 'none'">" style="<roundcube:exp expression="!env:framed || env:extwin ? 'display: flex; flex-direction: column;': ''">">
<roundcube:if condition="!env:framed || env:extwin" />
- <div id="<roundcube:exp expression="env:action == 'print' ? 'print-' : ''">layout">
+ <div id="xxheader">xxheader</div>
+ <div id="<roundcube:exp expression="env:action == 'print' ? 'print-' : ''">layout" style="position: relative;">
<roundcube:endif />
also i suggest you extend the Elastic skin not modify the core files so that your customization can survive updates.
#15
Theme Releases / Re: Creating a Customizable He...
Last post by samuelolavo - June 23, 2025, 08:16:13 AMHi again,
I'm trying to add a static custom header and footer to the Elastic theme in Roundcube. The goal is simple: I want a header at the top and a footer at the bottom of every page — outside the main mail interface — without interfering with any content, especially mail reading, writing, or listing.
I created a partial file called header_dei.html in templates/includes/, with a simple UC logo wrapped in a <div> block. I then included it in layout.html like this:
<include file="includes/header.html" />
I placed it right after the <body> tag. However, when I load Roundcube, the layout becomes broken: the header appears, but the main interface shifts or behaves unexpectedly (scrollbars appear, mailboxes are pushed down, etc.).
I don't want the header/footer to be part of the message pane or mailbox UI — just visually sit above and below everything.
What I'm looking for:
Best way to include a static header/footer that stays out of the main Elastic layout
Doesn't interfere with the content area or the JS/CSS positioning of mail elements
Works well in both normal and iframe/framed views
Is there a recommended place in the theme's structure for inserting such elements? Do I need to wrap them in special containers or avoid certain layout areas?
Thanks in advance for any suggestions or examples!
I'm trying to add a static custom header and footer to the Elastic theme in Roundcube. The goal is simple: I want a header at the top and a footer at the bottom of every page — outside the main mail interface — without interfering with any content, especially mail reading, writing, or listing.
I created a partial file called header_dei.html in templates/includes/, with a simple UC logo wrapped in a <div> block. I then included it in layout.html like this:
<include file="includes/header.html" />
I placed it right after the <body> tag. However, when I load Roundcube, the layout becomes broken: the header appears, but the main interface shifts or behaves unexpectedly (scrollbars appear, mailboxes are pushed down, etc.).
I don't want the header/footer to be part of the message pane or mailbox UI — just visually sit above and below everything.
What I'm looking for:
Best way to include a static header/footer that stays out of the main Elastic layout
Doesn't interfere with the content area or the JS/CSS positioning of mail elements
Works well in both normal and iframe/framed views
Is there a recommended place in the theme's structure for inserting such elements? Do I need to wrap them in special containers or avoid certain layout areas?
Thanks in advance for any suggestions or examples!
#16
Roundcube Discussion / Re: HELP LOGIN ROUNDCUBE
Last post by ndubuisiokeh@ - June 22, 2025, 11:17:45 AMPLEASE I NEED HELP HOW CAN I LOGIN INTO MY ROUNDCUBE
#17
General Discussion / Re: my account keeps sending b...
Last post by JohnDoh - June 20, 2025, 04:32:07 PMRoundcube is an open source web based mail clint that your email provider is using to give you webmail access. It cannot send emails on its own. Please contact your email provider, they should be able to tell you where the emails are coming from.
#18
General Discussion / my account keeps sending blank...
Last post by Hadler - June 20, 2025, 10:55:40 AMHi - my email account keeps sending blank emails to my contacts - I can't figure out how to stop it. I have updated my auto responder, any other tips would be much appreciated
thanks
thanks
#19
General Discussion / Re: Incoming emails not showin...
Last post by SKaero - June 18, 2025, 12:09:02 AMIt sounds like your DNS is setup incorrectly. If GoDaddy is providing the mail service I'd recommend you contact them for support they should be able to provide the DNS change you need to make in order for email to get to the account.
#20
General Discussion / Re: Incoming emails not showin...
Last post by famatstudent - June 17, 2025, 05:37:02 PMI just got this error from an email that was sent with the webmail email cc-ed:
The response was:
DNS Error: DNS type 'mx' lookup of famatdelegates.org responded with code NOERROR DNS type 'aaaa' lookup of famatdelegates-org.mail.protection.outlook.com. responded with code NXDOMAIN DNS type 'a' lookup of famatdelegates-org.mail.protection.outlook.com. responded with code NXDOMAIN
The response was:
DNS Error: DNS type 'mx' lookup of famatdelegates.org responded with code NOERROR DNS type 'aaaa' lookup of famatdelegates-org.mail.protection.outlook.com. responded with code NXDOMAIN DNS type 'a' lookup of famatdelegates-org.mail.protection.outlook.com. responded with code NXDOMAIN