,

Create Mail Server on Windows with Open Source hMailServer

Creating and setting up of mail server on Windows is not as difficult as perceived. But if you are looking for open-source free software to create mail/SMTP server, you certainly have very few choices. One of the open-source software for Windows mail servers is hMailServer. It installs just like any other software, but configuration could be tricky. There is one more software in my knowledge for Windows, which is free, is Axigen.

In this tutorial, you will learn to install and configure hMailServer. In some other tutorial, I will discuss Axigen as well.

Requirement for hMailServer

You will need

  • a domain name
  • a Windows Machine. It could be Windows 10, Windows Server 2016, 2019, or any other Windows edition.

I recommend getting Windows Server from Turnkey Internet or anywhere you like, just make sure port 25 is open. Best thing is about turnkey is you can buy and apply Windows license from somewhere and pay them just for VPS. This might save some money for you.

Testing for Open Port 25 on Windows

On Windows 10 go to control panel and search for “Windows Features”

windows-features-open-port-25

Now go to Turn Windows features on or off and look for telnet. Check the box in front of it and click OK.

telnet-windows-open-port

After that open command prompt and type

telnet smtp.gmail.com 25

If you get connected message then all is well, otherwise your port 25 is blocked.

Getting & Installing hmailserver

To get hmailserver just go their website and download. Install it as any software and follow the screenshots below. During installation you will be asked to create password. This password will be needed every time you start hmailserver.

Configuring hMailServer

After installation on first run you will be asked for password to start.

Adding Domain

After that, on next screen add domain as follows.

add-domain-hmailserver

Next type the domain name and save.

create-mailserver-hmailserver

Adding Accounts

After that, you need to add account for the domain. Simply go to Accounts and then Add.

On following screen enter username and password, then save.

create-windows-mail-server

Generate and add DKIM key to hMailServer

In order to generate DKIM key to hMailServer, you need openssl key generator. Just download from the following link

Alternatively, you can also download it from here. Next install the openssl and open command prompt on your Windows.

Generating DKIM key on Windows

On command prompt (cmd) type

cd C:\Program Files\OpenSSL-Win64\bin

Next, execute the following command to generate the key

openssl.exe genrsa -out dkim.private.key 1024
openssl.exe rsa -in dkim.private.key -out dkim.public.key -pubout -outform PEM

If you get any error, run cmd as administrator. You will get output as follows.

C:\WINDOWS\system32>cd C:\Program Files\OpenSSL-Win64\bin

C:\Program Files\OpenSSL-Win64\bin>openssl.exe genrsa -out dkim.private.key 1024
Generating RSA private key, 1024 bit long modulus (2 primes)
............+++++
.......+++++
e is 65537 (0x010001)

C:\Program Files\OpenSSL-Win64\bin>openssl.exe rsa -in dkim.private.key -out dkim.public.key -pubout -outform PEM
writing RSA key

C:\Program Files\OpenSSL-Win64\bin>

Now you will see two files at C:\Program Files\OpenSSL-Win64\bin. One is dkim.private.key and another dkim.public.key. Next, you need to tell hMailServer the location of dkim.private.key and the selector. Here you can use any alphanumeric as a selector but I am going to use mail

hmailserver-create-dkim-key-configuration

Next, you open dkim.public.key in notepad and follow the steps to create DKIM record for your domain.

Configuring DNS records

You need to create following DNS records in your domain. Login to your domain registrar and look for DNS management.

TypeHostValue
AmailYour Server IP address
TXT@v=spf1 a mx ip4:192.168.10.10 ~all
TXT_dmarcv=DMARC1; p=quarantine; rua=mailto:dmarc@yourdomain.com; ruf=mailto:dmarc@yourdomain.com; sp=quarantine
TXTmail._domainkeyv=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQ…………;

After this, you can test your email server. For testing, I am going to use Thunderbird. You can also download any desktop based software to test. You can also check hmailserver outlook settings tutorial if you wanted to use outlook with hmailserver.

Enter the following SMTP details in the software.

Hostlocalhost
Useruser@yourdomain.com
PasswordYou chose
Port587
TLSNone

After that, you can send test email to your Gmail.

Conclusion

Creating MailServer on Windows would have been tedious task, but thanks to hmailserver it’s super easy. This is boon for the people, who are unable to get with nitty-gritty of Linux.

17 replies
  1. Gideon Adeniran
    Gideon Adeniran says:

    Thank you for all your tutorials and I must say I enjoyed and have learnt a lot from them. I have a question boss concerning the hmail server. Please how do I set up a reverse DNS in hmail server? You did not include it in the tutorial. Hope to hear back from you.

    Thank you.

    Gideon

    Reply
  2. martial
    martial says:

    hello
    I have my domain with godaddy I followed the steps but I do not receive or send the mails I have this message in gmail when I send an email from gmail ( Response from the remote server:
    552 1 Requested mail action aborted, mailbox not found
    is there a propagation delay

    Reply
    • Dhiraj Rahul
      Dhiraj Rahul says:

      No, it shouldn’t be. Actually, you have to do a couple more things to send emails from the outside app (i.e. those apps that are not installed on Windows where hmailserver is installed). Also, you have to enable the IIS server to receive emails. Overall, it’s not going to be easy if you are new. I would suggest you go with MailEnable(https://youtu.be/EgQVSMVWif8) or wait till I release 2nd part of hmailserver viedo.

      Reply
  3. Varun
    Varun says:

    1st Error: while running the command openssl.exe genrsa -out dkim.private.key 1024 “genrsa: Can’t open “dkim.private.key” for writing, Permission denied”

    2nd Error: while running the command “openssl.exe rsa -in dkim.private.key -out dkim.public.key -pubout -outform PEM”

    Can’t open dkim.private.key for reading, No such file or directory
    2476:error:02001002:system library:fopen:No such file or directory:crypto\bio\bss_file.c:69:fopen(‘dkim.private.key’,’r’)
    2476:error:2006D080:BIO routines:BIO_new_file:no such file:crypto\bio\bss_file.c:76:
    unable to load Private Key

    Reply
  4. sukhbaatar
    sukhbaatar says:

    Hello, I have small topology. Router have static ip address. Local network have 10 pc. I want to install hmailserver on 1 pc and join to domain. How to make it?

    Reply
  5. tenny
    tenny says:

    thanks for this tutorial but i have one small issue. i got all the step and its sending to yahoo, gmail and the likes but i tried sending to sms gateway like (2095288192@tmomail.net) but i got this response [sender rejected AUP#DNS]
    please what can i do

    Reply

Leave a Reply

Want to join the discussion?
Feel free to contribute!

Leave a Reply

Your email address will not be published. Required fields are marked *