Recent posts
#1
General Discussion / Re: unable to sent mail in rou...
Last post by 440music - Today at 02:35:16 PMI found the error I made, I had the wrong name in dovecot config and roundcube config.
#2
There aren't any concrete plans that I'm aware of. There is an open ticket https://github.com/roundcube/roundcubemail/issues/5918 for adding support but I don't think there is any ongoing work.
Roundcube next was going to support JAMP but that project came to an end. It would require a lot of rework in the Roundcube core to support JMAP so I wouldn't hold out hope for it anytime soon.
Roundcube next was going to support JAMP but that project came to an end. It would require a lot of rework in the Roundcube core to support JMAP so I wouldn't hold out hope for it anytime soon.
#3
Release Discussion / Re: Round cube worked on PHP 8...
Last post by frenzybiscuit - September 16, 2025, 08:58:35 AMRoundcube works fine on 8.4-fpm.
Not sure about 8.3.
Not sure about 8.3.
#4
Requests / Re: JMAP
Last post by frenzybiscuit - September 16, 2025, 08:53:24 AMI realize this is old, but still relevant.
Does roundcube have any plans to add JMAP support?
Does roundcube have any plans to add JMAP support?
#5
General Discussion / email forwarding
Last post by Light and Color Theory - September 15, 2025, 05:16:41 PMAnyway to speed up the forward to gmail account. Seems to take forever
#6
Pending Issues / The email signature don't show...
Last post by Srv1024 - September 15, 2025, 07:37:15 AMFor some time now, the signature in my email hasn't been showing the image. It's made in HTML the text appears, but not the image. I've already tried different formats (png, jpg, svg, etc.), but none of them work. pls help me 

#7
API Based Plugins / Re: Issue configuring Roundcub...
Last post by Cascuda - September 15, 2025, 02:36:14 AMI don't quite remember—maybe it was from Stack Overflow or somewhere similar. But the DEBUG logs confirmed it wasn't really doing anything, since they only showed a few lines and nothing more. I've already solved it though created an API, and voila, everything's working now.
#8
General Discussion / e-mail transfer didnt't work
Last post by Cornerround - September 14, 2025, 10:23:15 AMHi,
I want to move an e-mailadress to another server. I already created the e-mailadress. E-amilas go out and e-mails come in, before the movement of folders and files, not any more.And I transfer the folders and all config-files from old server to the e-mailadress-folder.I can subscribe the folders but I cant see any e-mails in the folders. If I try to open any folder its an internal server-error. Only inbox-folders and spam/junk has no internal server error message. Whats wrong? All folders are recursive vmail.Would be pleased about help :O Thank you for helping.
I want to move an e-mailadress to another server. I already created the e-mailadress. E-amilas go out and e-mails come in, before the movement of folders and files, not any more.And I transfer the folders and all config-files from old server to the e-mailadress-folder.I can subscribe the folders but I cant see any e-mails in the folders. If I try to open any folder its an internal server-error. Only inbox-folders and spam/junk has no internal server error message. Whats wrong? All folders are recursive vmail.Would be pleased about help :O Thank you for helping.
#9
API Based Plugins / Re: Issue configuring Roundcub...
Last post by alec - September 14, 2025, 02:30:36 AMQuote from: Cascuda on September 12, 2025, 02:08:01 AMLast night I forgot to attach the configuration I use in the plugin, just in case the error is there. I'd appreciate any help.Code Select<?php
$rcmail_config['password_driver'] = 'ldap';
$rcmail_config['password_ldap_host'] = 'ldap://mail-server_lldap:3890';
$rcmail_config['password_ldap_base'] = 'ou=people,dc=dockermailserver,dc=lan';
[/quote]
There's no such option as password_ldap_base nor password_ldap_debug. Password_ldap_method value is also wrong. Where did you get that from?
#10
API Based Plugins / Re: Issue configuring Roundcub...
Last post by Cascuda - September 12, 2025, 04:52:48 PMThe original Roundcube password plugin didn't work for me with LDAP, so I built my own solution. I created an API that handles the password update in LDAP, and modified the plugin so that it only validates the input and sends the request in JSON to that API.
This way, Roundcube is just the interface while the actual password change happens in the backend.
This way, Roundcube is just the interface while the actual password change happens in the backend.