July, 2019
July 9, 2019, admin, 0
You can add custom email filters to discard email attachments in cPanel for a particular user. Use Global Filters option to add it for the whole account. For this, use Email Filters in cPanel >> Email Tab. For example, you want to delete emails with .exe attachments. In cPanel, go to Email More
Like this:
Like Loading...
July 5, 2019, admin, 0
I have added the following to my .htaccess file (password protected) to limit the access to wordpress login pages. ErrorDocument 401 “Unauthorized Access” ErrorDocument 403 “Forbidden” <FilesMatch “wp-login.php”> AuthName “Authorized Only” AuthType Basic AuthUserFile /home/user/.htpasswd require valid-user </FilesMatch> But after the change, the page won’t load, it gave out a infinite loop More
Like this:
Like Loading...
July 2, 2019, admin, 0
If you want to add subject in the postfix log files, add the following in main.cf file at the bottom. vi /etc/postfix/main.cf header_checks = regexp:/etc/postfix/header_checkssmtp_header_checks = regexp:/etc/postfix/header_checks And add the lines below in /etc/postfix/header_checks files, create the file if it’s not already there. /^subject:/ WARN/^X-PHP-Originating-Script:/ WARN Now restart postfix More
Like this:
Like Loading...