├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── config.inc.php ├── etc └── cont-init.d │ └── 99-roundcube ├── plugins-password-config.inc.php └── plugins-password-file.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbertkl/docker-roundcube/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbertkl/docker-roundcube/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbertkl/docker-roundcube/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbertkl/docker-roundcube/HEAD/README.md -------------------------------------------------------------------------------- /config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbertkl/docker-roundcube/HEAD/config.inc.php -------------------------------------------------------------------------------- /etc/cont-init.d/99-roundcube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbertkl/docker-roundcube/HEAD/etc/cont-init.d/99-roundcube -------------------------------------------------------------------------------- /plugins-password-config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbertkl/docker-roundcube/HEAD/plugins-password-config.inc.php -------------------------------------------------------------------------------- /plugins-password-file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbertkl/docker-roundcube/HEAD/plugins-password-file.php --------------------------------------------------------------------------------