hMailServer is a free Open Source Mail Server for Windows. https://www.hmailserver.com Delete mail queue in hmailserver hMailServer connection to imap server failed […]
hMailServer connection to imap server failed
To Fix the error Change Auto-ban setting and restart hMailserver hMail IMAP server failed Try Disabling Firewall Click Start, Run and type:
1 |
Netsh firewall set opmode disable |
1 |
Netsh firewall set opmode enable |
1 2 |
Go to hMail Administrator > IP ranges And remove all Banned IPs |
See hMailServer […]
Delete mail queue in hmailserver
Hmail store mails in folder
1 |
C:\hMailServer\Data\ |
Delete all .EML files from Data Directory. Do not delete folders inside Data, that is users data. Go to Data Directory (C:\hMailServer\Data\) in command prompt and run below command.
1 2 |
cd "C:\hMailServer\Data\" del *.eml |
If you have lot of mails in queue, it may take some time to finish. See hmailserver […]
Enable remote desktop in xubuntu

Install vino
1 |
sudo apt-get install vino |
Configure Vino Configure vino, run
1 |
vino-preferences |
Start vino on boot XFCE settings > Session and Startup > Add
1 2 3 |
Name: vino Description: vino desktop sharing Command: /usr/lib/vino/vino-server |
Now restart the computer. See Ubuntu […]
iptables -F lock me out
After i type
1 |
iptables -F |
server goes down. Can’t connect to web or ssh, seems all connection is locked by iptables. SOLUTION This is because the chain policy for the firewall input chain was set to DROP check with “iptables –list” you will see “Chain INPUT (policy DROP)”.
1 2 3 4 5 6 7 8 9 10 |
[root@server52 ~]# iptables -L |grep Chain Chain INPUT (policy DROP) Chain FORWARD (policy DROP) Chain OUTPUT (policy DROP) Chain GALLOW (2 references) Chain INVALID (2 references) Chain INVDROP (10 references) Chain LOGDROPIN (1 references) Chain LOGDROPOUT (1 references) [root@server52 ~]# |
If this is the case, before you […]
Sandboxie move sandbox from from drive c to d
To move Sandbox folder from C drive to D drive. Start Sandboxie Control.
1 |
Sandbox > Set Container Folder |
On next screen, select the drive where you need sandbox folder stored. […]
Install vnc server on CentOS 5
NOTE: CentOS 5 reached its End of Life on March 31, 2017. For installing VNC desktop on CentOS 7, see Install Xfce VNC remote desktop on CentOS 7 Install GUI on Sever To find available desktop environments
1 |
yum grouplist |
To install gnome
1 |
yum groupinstall "GNOME Desktop Environment" |
For KDE
1 |
yum groupinstall "KDE (K Desktop Environment)" |
For XFCE, install
1 |
yum groupinstall "XFCE" |
XFCE file size in fedora 12 […]
MailEnable Delete old logs
Create a new file with file name del_smtp_log.bat in C:\Program Files\Mail Enable\Logging with following commands.
1 2 3 |
net stop mesmtpcs del SMTP\*.log net start mesmtpcs |
See MailEnable […]
Check spam mails in MailEnable
1 2 |
cd C:\Program Files\Mail Enable\Logging\SMTP findstr "Authenticated" LOG_FILE_NAME > auth.txt |
Now check each sender IP in auth.txt file, check whois of IP address see, if any spamer.
1 2 |
cd C:\Program Files\Mail Enable\Logging\SMTP findstr "AUTH" ex* > auth.txt |
1 2 |
cd C:\Program Files\Mail Enable\Logging\SMTP findstr "AUTH" ex* | findstr "Authenticated" > auth.txt |
See MailEnable […]
MailEnable delete old mails
MailEnable provides a command line utility to purge messages from the MailEnable message store. The utility will purge all postmaster, badmail, Inbox or Deleted Items messages that exceed the specified age. It can be scheduled as a batch job using the Windows Task Scheduler if needed.
1 |
Syntax: MEPURGE {POSTOFFICE+ALL} {DAYS} {SWITCHES} [UNREAD] |
Parameters POSTOFFICE|ALL = Apply to a single postoffice […]