Recent posts
#1
API Based Plugins / CalDav Account won't connect
Last post by PMG-Me - July 25, 2026, 10:45:44 AMHi,
I've been trying to sync up my caldav account to my native apple calendar app but it wont connect.
I have tried using the configuration file that is sent by webmail, but also setting it up manually by using the server address and port number.
Neither worked.
Could anybody give specific guidance? The devices I'm setting up on is a MacbookPro 2023
Thanks in advance
I've been trying to sync up my caldav account to my native apple calendar app but it wont connect.
I have tried using the configuration file that is sent by webmail, but also setting it up manually by using the server address and port number.
Neither worked.
Could anybody give specific guidance? The devices I'm setting up on is a MacbookPro 2023
Thanks in advance
#2
Release Discussion / Re: spam folder
Last post by RynHong - July 25, 2026, 07:22:30 AMI'd also have a look at the browser's developer console while reproducing the issue. If there's a JavaScript error or a failed network request, it often points you straight to the cause. If it only happens in one browser, testing in a private window with extensions disabled is worth trying too.
#3
Release Discussion / Re: How to installing with PHP...
Last post by RynHong - July 23, 2026, 08:22:24 AMI'd also recommend checking the server and browser logs if the problem keeps coming back, since they often point to the real cause much faster than guessing. Hopefully this helps anyone else who runs into the same issue.
#4
General Discussion / Re: problem Browsing Plugins
Last post by RynHong - July 22, 2026, 05:11:45 AMI'd also have a look at the server logs (Roundcube, PHP, and your mail server) around the time the issue occurs. They often reveal the real cause much faster than guessing. If you can share the exact error message and your Roundcube version, it'll be a lot easier for others to help narrow it down.
#5
Pending Issues / Re: Mailvelope GnuPG Integrati...
Last post by alec - July 19, 2026, 03:51:41 PMSigning is not supported. https://github.com/mailvelope/mailvelope/issues/769
#6
Pending Issues / Mailvelope GnuPG Integration
Last post by daisy - July 19, 2026, 11:53:37 AMHi all,
I am trying to setup my roundcube client to encrypt and sign emails automatically using my gpg keychain on my computer. I have installed the mailvelope plugin and set it to prefer my gnupg keychain. In roundcube, I have enabled api access to mailvelope for my domain. The state of the "Use Mailvelope main keyring" does not seem to change anything.
If I click the "Encrypt" button above my message, then the mailvelope editor becomes embedded and I can send an encypted email. However, If I do not have the public key for a recipient, I am unable to only sign my message via this method, which should be possible.
If I use the toggles on the right of my message, then when I click send, I get an error saying that there is no private key. I suspect this is because mailvelope shows my "Main keychain" as empty (which is being used by roundcube) and my "gnupg keychain" as preferred.
I suspect that I have misconfigured either roundcube, mailvelope or both, but not sure what I need to do to get this to work. Any advice would be greatly appreciated.
Cheers,
Daisy
I am trying to setup my roundcube client to encrypt and sign emails automatically using my gpg keychain on my computer. I have installed the mailvelope plugin and set it to prefer my gnupg keychain. In roundcube, I have enabled api access to mailvelope for my domain. The state of the "Use Mailvelope main keyring" does not seem to change anything.
If I click the "Encrypt" button above my message, then the mailvelope editor becomes embedded and I can send an encypted email. However, If I do not have the public key for a recipient, I am unable to only sign my message via this method, which should be possible.
If I use the toggles on the right of my message, then when I click send, I get an error saying that there is no private key. I suspect this is because mailvelope shows my "Main keychain" as empty (which is being used by roundcube) and my "gnupg keychain" as preferred.
I suspect that I have misconfigured either roundcube, mailvelope or both, but not sure what I need to do to get this to work. Any advice would be greatly appreciated.
Cheers,
Daisy
#7
Release Discussion / Re: mail.dcaky.cn
Last post by JohnDoh - July 16, 2026, 11:44:17 AMRoundcube is open source webmail software it is not a service. Only your service provider can answer your question as only they know how/why they have configured it so please ask them.
#8
Release Discussion / mail.dcaky.cn
Last post by legit77777 - July 14, 2026, 04:44:40 PMdoes http://mail.dcaky.cn/ not have a delete button for mail??
#9
API Based Plugins / Does RoundcubePlus CalDAV supp...
Last post by ikus060 - July 14, 2026, 11:29:44 AMHi all,
I'm running into an issue where recurring event exceptions (single-instance overrides using RECURRENCE-ID) seem to get silently dropped by the CalDAV backend. I wanted to check here before filing a bug report — maybe I'm missing something, or maybe this is a known limitation.
Backend: RoundcubePlus//XCalendar//Sabre//VObject//4.5.6//EN
The issue
When I PUT an ICS containing a recurring master event (RRULE) plus a modified single occurrence (same UID, with RECURRENCE-ID), the server responds 204 No Content (success). But a subsequent GET on that same resource only returns the master event — the exception/override VEVENT is gone.
```
BEGIN:VCALENDAR
PRODID:-//Test//EN
VERSION:2.0
CALSCALE:GREGORIAN
BEGIN:VEVENT
DTSTART:20260317T140000Z
DTEND:20260317T150000Z
RRULE:FREQ=WEEKLY
DTSTAMP:20260714T144618Z
SEQUENCE:10
STATUS:CONFIRMED
SUMMARY:Recurring Master
TRANSP:OPAQUE
UID:test-recur-exception-001
END:VEVENT
BEGIN:VEVENT
DTSTART:20260609T143000Z
DTEND:20260609T150000Z
RECURRENCE-ID:20260609T140000Z
DTSTAMP:20260714T144618Z
SEQUENCE:11
STATUS:CONFIRMED
SUMMARY:Exception - moved 30 min later
TRANSP:OPAQUE
UID:test-recur-exception-001
END:VEVENT
END:VCALENDAR
```
The GET response should contain two VEVENT blocks: the master (with RRULE) and the exception (with RECURRENCE-ID:20260609T140000Z and the updated time of 14:30–15:00).
But with my instance of roundcube, only the master VEVENT is returned. The exception is gone entirely — no error, no partial data, just missing.
1. Has anyone else run into this with RoundcubePlus's CalDAV backend?
2. Is there a server-side config option that needs to be enabled to support recurrence overrides?
3. Is this a known limitation of this sabre/vobject-based backend, or should I file this as a bug?
I'm running into an issue where recurring event exceptions (single-instance overrides using RECURRENCE-ID) seem to get silently dropped by the CalDAV backend. I wanted to check here before filing a bug report — maybe I'm missing something, or maybe this is a known limitation.
Backend: RoundcubePlus//XCalendar//Sabre//VObject//4.5.6//EN
The issue
When I PUT an ICS containing a recurring master event (RRULE) plus a modified single occurrence (same UID, with RECURRENCE-ID), the server responds 204 No Content (success). But a subsequent GET on that same resource only returns the master event — the exception/override VEVENT is gone.
```
BEGIN:VCALENDAR
PRODID:-//Test//EN
VERSION:2.0
CALSCALE:GREGORIAN
BEGIN:VEVENT
DTSTART:20260317T140000Z
DTEND:20260317T150000Z
RRULE:FREQ=WEEKLY
DTSTAMP:20260714T144618Z
SEQUENCE:10
STATUS:CONFIRMED
SUMMARY:Recurring Master
TRANSP:OPAQUE
UID:test-recur-exception-001
END:VEVENT
BEGIN:VEVENT
DTSTART:20260609T143000Z
DTEND:20260609T150000Z
RECURRENCE-ID:20260609T140000Z
DTSTAMP:20260714T144618Z
SEQUENCE:11
STATUS:CONFIRMED
SUMMARY:Exception - moved 30 min later
TRANSP:OPAQUE
UID:test-recur-exception-001
END:VEVENT
END:VCALENDAR
```
The GET response should contain two VEVENT blocks: the master (with RRULE) and the exception (with RECURRENCE-ID:20260609T140000Z and the updated time of 14:30–15:00).
But with my instance of roundcube, only the master VEVENT is returned. The exception is gone entirely — no error, no partial data, just missing.
1. Has anyone else run into this with RoundcubePlus's CalDAV backend?
2. Is there a server-side config option that needs to be enabled to support recurrence overrides?
3. Is this a known limitation of this sabre/vobject-based backend, or should I file this as a bug?
#10
General Discussion / Re: layperson needing help
Last post by SKaero - July 08, 2026, 01:29:48 PMIf you only have access to the Roundcube account you will not have access to add any plugins. If there isn't an option to change the password in the settings then you'll need to contact the person who you bought the account from and ask them how they support changing the password.