26 lines
809 B
ReStructuredText
26 lines
809 B
ReStructuredText
Roundcube
|
|
=========
|
|
|
|
Roundcube is a browser-based open-source webmail client that provides a
|
|
full-featured email interface with support for IMAP, SMTP, address books, and
|
|
extensible plugins.
|
|
|
|
Code
|
|
^^^^
|
|
|
|
The NixOS module for Roundcube integrates almost immediately with NixOS
|
|
mailserver, automatically configuring an Nginx virtual host and ACME-managed
|
|
TLS for secure webmail access; using other web servers may require additional
|
|
manual setup.
|
|
|
|
Once set up you can login with your login account credentials.
|
|
|
|
.. literalinclude:: ./roundcube.nix
|
|
:language: nix
|
|
|
|
To use a different reverse proxy, such as Caddy, bind Roundcube's Nginx virtual
|
|
host to ``127.0.0.1`` on a custom port and disable SSL and ACME, as the reverse
|
|
proxy will handle those.
|
|
|
|
.. literalinclude:: ./roundcube-caddy.nix
|
|
:language: nix |