From 97a4c7484c03e94277d1464aee85f84fbb987c79 Mon Sep 17 00:00:00 2001 From: kara-1234 <40502764+kara-1234@users.noreply.github.com> Date: Wed, 6 Feb 2019 08:59:26 -0500 Subject: [PATCH] Allow HTTPD to send Emails Update to allow httpd to send emails. --- docs/xINSTALL.centos7.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/xINSTALL.centos7.md b/docs/xINSTALL.centos7.md index 80532c636..160d92873 100644 --- a/docs/xINSTALL.centos7.md +++ b/docs/xINSTALL.centos7.md @@ -371,6 +371,9 @@ sudo chcon -R -t httpd_sys_rw_content_t /var/www/MISP/app/tmp # Allow httpd to connect to the redis server and php-fpm over tcp/ip sudo setsebool -P httpd_can_network_connect on +# Allow httpd to send emails from php +sudo setsebool -P httpd_can_sendmail on + # Enable and start the httpd service sudo systemctl enable httpd.service sudo systemctl start httpd.service