Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2019-01-30 15:18:57 +0300
committerAleksander Machniak <alec@alec.pl>2019-01-30 15:18:57 +0300
commitdb61f39e89bf007e4c0e25fba67debf2ecad547d (patch)
tree80b3f5ead0d5f25ae485367cdfb9556e7e92517f /INSTALL
parent6e744986562e3d7ace323dcc2ddf9cb7f5d4e7e6 (diff)
Add note about possible SELINUX issue (#6601)
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL8
1 files changed, 8 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
index d8ab5a127..57551b264 100644
--- a/INSTALL
+++ b/INSTALL
@@ -288,3 +288,11 @@ PHP >= 5.6 validates the ssl certificates by default. It means that
if IMAP/SMTP certificates are self-signed or use wrong host name you'll get
connection errors. A solution in such cases is to set imap_conn_options,
smtp_conn_options and managesieve_conn_options in a way described in config/defaults.inc.php.
+
+If you have problems with temp files or non-working logs make sure temp and logs folders
+are writeable to the user used by http server. Access to them may also be blocked by
+SELINUX. Here's some sample commands for SELINUX:
+
+ $ semanage fcontext -a -t httpd_sys_rw_content_t "/path_to_roundcube/logs(/.*)?"
+ $ semanage fcontext -a -t httpd_sys_rw_content_t "/path_to_roundcube/temp(/.*)?"
+ $ restorecon -Rv /path_to_roundcube/