Skip to content

Latest commit

 

History

History
66 lines (57 loc) · 3.18 KB

setup_hmail_server.md

File metadata and controls

66 lines (57 loc) · 3.18 KB

Setup hMail server as a mail server

Install hMaiLServer

  1. Download hMaiLServer
  2. Install hMaiLServer
  3. Select database-type
    1. Select Use built-in database engine
  4. Enter <mysql_hMailServer_password from group_vars/corp.yml> for password

Domains and accounts

  1. Start hMailAdmin
  2. Enter <mysql_hMailServer_password from group_vars/corp.yml> for password

Create domain

  1. Select "Domains" on the left
  2. Select "Add" on the right
    1. Enter hac.local into domain
    2. hmail_create_domain
    3. Select "Save"

Create users

  1. Domains > <internalCorpDomain in terraform/variables.tf>> Accounts
  2. Select "Add" on the right
    1. Enter <username> into address
    2. Enter <user password> into Password
    3. Repeat for all users
    4. hmail_create_users

Test mail server

  1. Download and install Thunderbird
  2. Manually add e-mail
    1. hmail_thick_client

Open mail relay test

  1. telnet 172.16.50.20 25
  2. HELO <HOSTNAME>
  3. MAIL FROM: [email protected]
  4. RCPT TO: [email protected]
DATA
Subject: hello world
Hello world! I am the test email.
.

QUIT

References