Recommended Services
Supported Scripts
Category: Debian
BASH: Script to alert when Exim mail queue is HIGH
The following script sends an alert whenever the exim mail queue is greater than a certain threshold
#!/bin/bash
if [ `/usr/sbin/exim ...
Script to Test Email Mail Delivery using SMTP Authentication
The below script may be useful to test the mail delivery using email authentication with and without SSL
Note:
The ...
Linux: Hide OS Version from Nmap scans
If you want to disable detection of OS version during Nmap scans
1. Edit the sysctl.conf file
vi /etc/sysctl.conf
2. Add the ...
Disable SELINUX on Redhat/CentOS Linux
1. Edit the following file
vi /etc/sysconfig/selinux
2. Modify the following from
SELINUX=permissive
TO
SELINUX=disabled
3. Reboot the server using
reboot
Disable IPV6 on CentOS 6.x servers
1. Edit /etc/sysctl.conf and add the following line
net.ipv6.conf.all.disable_ipv6 = 1
2. Edit /etc/sysconfig/network and add the following line
NETWORKING_IPV6=no
3. Edit /etc/sysconfig/network-scripts/ifcfg-eth0 ...
Run Zimbra on Both HTTP and HTTPS
1. Disable ProxySSLUpstream
zmprov ms `zmhostname` zimbraReverseProxySSLToUpstreamEnabled FALSE
2. Reconfigure Nginx
/opt/zimbra/libexec/zmproxyconfig -e -w -o -a 8080:80:8443:443 -x both -H `zmhostname`
3. Configure ...