Squirrelmail Forbidden You don't have permission to access
Squirrelmail after setup when accessed shows 403 Forbidden error, this is due to improper configuration in squirrelmail.conf file. If you are using Apache 2.4 version set Require all granted to fix the issue.
$ curl https://localhost/webmail
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access /webmail on this server.</p>
</body></html>
$ cat /etc/httpd/conf.d/squirrelmail.conf
#
# SquirrelMail is a webmail package written in PHP.
#
Alias /webmail /usr/share/squirrelmail
<Directory "/usr/share/squirrelmail">
Options Indexes MultiViews
Require all granted
AllowOverride none
Order allow,deny
Allow from all
</Directory>
$ curl -I https://localhost/webmail/src/login.php
HTTP/1.1 200 OK
Date: Wed, 04 Apr 2018 20:00:18 GMT
Server: Apache/2.4.29 (Fedora) PHP/7.1.15
Content-Type: text/html; charset=iso-8859-1
Related Articles
Squirrelmail Forbidden You don't have permission to access
Squirrelmail after setup when accessed shows 403 Forbidden error, this is due to improper configuration in squirrelmail.conf file.
Virt-manager error on fedora 26
virt-manager is a graphical tool to manage KVM VMs on a host, due to some dependency or reinstall of libvirt can cause virt-manager to show ImportError: No module named libvirt.
Asciinema a screen recording tool
How to use Asciinema to record and share terminal screen recordings on Linux.