Roundcube
About
Roundcube (RC) is a webmail client that runs under the LAMP stack.
Files
When installed via apt, this is where Roundcube's files end up:
path | description |
---|---|
/etc/roundcube/
|
global configuration stuff:
|
/usr/share/roundcube/
|
application code |
/var/lib/roundcube/
|
installation image -- about half of the top folders here are just links:
It also contains a few web-app-related things:
|
When installed this way, however, RC is not configured to play nicely with a virtual domain. It seems to expect to run as www-data
. Tentatively, the remedy is just to change ownership of everything it touches (including log folders), but I'm still working on this. —Woozle (talk) 15:02, 17 February 2025 (UTC)
Tech Notes
The MariaDB/MySQL password must not contain the &
character, because the DSN parser treats it as syntactically significant. There does not seem to be any way of escaping it, either. The critical piece of code is in /usr/share/roundcube/program/lib/Roundcube/rcube_db.php
, line 1336:
if (strpos($dsn, '&') !== false) {
$opts = explode('&', $dsn);
}
Pages
- /archive: obsolete stuff
Links
Reference
- roundcube.net - official
- Wikipedia