Roundcube Community Forum

 

Recent posts

#11
Theme Releases / Re: Creating a Customizable He...
Last post by samuelolavo - June 23, 2025, 08:16:13 AM
Hi 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!
#12
Roundcube Discussion / Re: HELP LOGIN ROUNDCUBE
Last post by ndubuisiokeh@ - June 22, 2025, 11:17:45 AM
PLEASE I NEED HELP HOW CAN I LOGIN INTO MY ROUNDCUBE
#13
General Discussion / Re: my account keeps sending b...
Last post by JohnDoh - June 20, 2025, 04:32:07 PM
Roundcube 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.
#14
General Discussion / my account keeps sending blank...
Last post by Hadler - June 20, 2025, 10:55:40 AM
Hi - 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
#15
General Discussion / Re: Incoming emails not showin...
Last post by SKaero - June 18, 2025, 12:09:02 AM
It 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.
#16
General Discussion / Re: Incoming emails not showin...
Last post by famatstudent - June 17, 2025, 05:37:02 PM
I 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
#17
General Discussion / Incoming emails not showing up
Last post by famatstudent - June 17, 2025, 11:33:13 AM
I created a webmail email with my domain on GoDaddy through the option in cPanel. I can send email freely, and the recipient receives them. However, when I sent an email from a Gmail to this webmail email, it does not show up in the webmail inbox. In fact, there is no delivery error either that is sent to the Gmail. Why is this happening?

Also, if there is a fix, would it also be possible to see all of the emails I have missed during the time I wasn't receiving emails? I think there could have been very important emails that I missed.
#18
Pending Issues / Re: error parsing opensmtpd vi...
Last post by gmarco - June 17, 2025, 06:50:07 AM
Hi,

probably the plugin is made for sendmail virtusertable format (where I use without any problems), but I think it should be sufficient to strip "brutally" all illegal characters from (the end of) email address  :)

Thanks so much for your kind reply.
#19
Pending Issues / Re: error parsing opensmtpd vi...
Last post by alec - June 17, 2025, 06:32:14 AM
I create https://github.com/roundcube/roundcubemail/issues/9898 for you.

In meantime you can try the new_user_dialog plugin.
#20
Pending Issues / error parsing opensmtpd virtua...
Last post by gmarco - June 17, 2025, 02:13:18 AM
Hi all,
roundcube v1.6.11 wrongly parse the virtuals of opensmtpd

The file is this:
# cat /usr/local/etc/mail/virtuals
[email protected]: dom-gmarco
....

The problem is that roundcube puts automagically upon login in the identities email field:
[email protected]:

which triggers errors while sending email as invalid sender.

The easy fix is manually edit identities and remove the ":" from the mail field, but probably many people will find difficulties trying to analyze where the problem could be.

I have in my config.inc.php this line:
// -- Plugins configs ------------------------------------------------

// -- virtuser_file
$rcmail_config['virtuser_file'] = '/usr/local/etc/mail/virtuals';

As a dirty quick fix will be possible to show automatically the identities window to the first login so people will be forced to check and modify the data ?

Thanks all for attention.