0014.html 5.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install and Setup hMailServer E-Mail Server</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="E-Mail Server For Windows,Free SMTP Host For Windows,How To Setup Free E-Mail Server On Windows,How To Install HMailServer On Windows,E-Mail,Server,HMailServer,Free,Self-Hosted,Free Software,Administration,Email,E-Mail Server,Home Lab,Install Guide,Local E-Mail,Microsoft Windows,Free E-Mail Server,Free SMTP Server On Windows,Free And Easy SMTP Server,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install and Setup hMailServer E-Mail Server">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="03/25/2022 03:21:35 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Install and Setup hMailServer E-Mail Server</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <p>This video tutorial will cover the basic installation and setup for hMailServer in it&#39;s simplest form. In future videos we will create and apply SSL certificates, enable Active Directory authentication for email accounts and setup the mail server for use with PHP.</p>
  26. <h2>Install and Basic Inbox Setup</h2>
  27. <ol>
  28. <li>If installing to a newer Windows OS, run the following commands as an administrator to enable .NET 2
  29. <div class="codeBlock">dism /online /enable-feature /featurename:NetFx3ServerFeatures /Source:D:\sources\sxs<br />
  30. dism /online /enable-feature /featurename:NetFx3 /Source:D:\sources\sxs</div>
  31. </li>
  32. <li>Download hMailServer <a href="https://www.hmailserver.com/download" target="_blank">Download</a></li>
  33. <li>Setup DNS entries for smtp. and imap.
  34. <ol start="1" style="list-style-type: lower-alpha;">
  35. <li>For Windows DNS, go to Start &gt; Windows Administrative Tools &gt; DNS</li>
  36. <li>Expand the DNS server and domain name</li>
  37. <li>Right Click &gt; New Host (A or AAAA)</li>
  38. <li>Type the dns name and target IP address &gt; Click OK</li>
  39. </ol>
  40. </li>
  41. <li>Run the hMailServer installer, accepting the default values</li>
  42. <li>Set the administrative password, re-type to confirm</li>
  43. <li>Click Install</li>
  44. <li>After the installation completes, Open the Start Menu &gt; hMailServer &gt; hMailServer Administrator</li>
  45. <li>Select localhost &gt; Click Connect</li>
  46. <li>Login with the password set during the installation</li>
  47. <li>Click Add domain...</li>
  48. <li>Enter the domain name to be used for the e-mail addresses &gt; Click Save</li>
  49. <li>Click on the Accounts folder</li>
  50. <li>Click the Add... button</li>
  51. <li>Enter an e-mail address and a password for the inbox</li>
  52. <li>Click the Save button</li>
  53. <li>Expand Settings &gt; Advanced &gt; IP Ranges
  54. <ol>
  55. <li>NOTE: To disable the ability to send e-mail outside the local network, delete the Internet IP Range by Right Clicking on it and selecting Remove</li>
  56. </ol>
  57. </li>
  58. <li>Click the Add... button</li>
  59. <li>Enter the name LAN and fill in the appropriate lower and upper IP for your subnet</li>
  60. <li>Review the available options, to make this a LAN only e-mail server only allow local to local e-mail addresses</li>
  61. <li>Click Save</li>
  62. </ol>
  63. <h2>Setting Up An E-Mail Client</h2>
  64. <ol>
  65. <li>Download Mozilla Thunderbird Portable <a href="https://portableapps.com/apps/internet/thunderbird_portable" target="_blank">Download</a></li>
  66. <li>Run the downloaded paf.exe file and extract it to any location</li>
  67. <li>Check the Run box and click Finish</li>
  68. <li>Fill out Your name, Email address and Password for the account created earlier</li>
  69. <li>Click Manual config</li>
  70. <li>For Incoming, enter imap.<youremaildomain></youremaildomain></li>
  71. <li>For Outgoing, enter smtp.<youremaildomain></youremaildomain></li>
  72. <li>Click the Re-test button, Thunderbird should set some additional values</li>
  73. <li>Click Done</li>
  74. <li>Select I understand the risks &gt; Done</li>
  75. </ol>
  76. <h2>Testing Your New E-Mail Server</h2>
  77. <ol>
  78. <li>In hMailServer Administrator, Expand Utilities &gt; Server sendout</li>
  79. <li>Select Specific domain and select the domain created earlier from the dropdown</li>
  80. <li>Fill out the form to send a test e-mail &gt; Click Send</li>
  81. <li>Back in Thunderbird, click the Get Messages button</li>
  82. <li>You should receive the test e-mail</li>
  83. </ol>
  84. </div>
  85. </div>
  86. </body>
  87. </html>