Skip to content

94ivana/hmailserver

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hMailServer

hMailServer is an open source email server for Microsoft Windows.

This page describes how to compile and run hMailServer in debug.

For other information about hMailServer, please go to http://www.hmailserver.com

Building hMailServer

Branches

  • The master branch contains the latest development version of hMailServer. This version is typically not yet released for production usage. If you want to add new features to hMailServer, use this branch.

  • The x.y.z (for exampel 5.6.2) contains the code for the version with the same name as the branch. For example, branch 5.6.1 contains hMailServer version 5.6.1. These branches are typically only used for bugfixes or minor features.

Environment set up

Required software:

NOTE

You should not be compiling hMailServer on a computer which already runs a production version of hMailServer. When compiling hMailServer, the compilation will stop any already running version of hMailServer, and will register the compiled version as the hMailServer version on the machine (configuring the Windows service). This means that if you are running a production version of hMailServer on the machine, this version will stop running if you compile hMailServer. If this happens, the easiest path is to reinstall the production version.

Configuring Visual Studio 2013 Express Edition

These steps are only required if you are using Visual Studio 2013 Express Edition. The steps are required because Express Edition does not include Active Template Library which hMailServer relies on. ATL therefore needs to be installed separately:

  1. Download the (Windows Driver Kit 7.1 ISO)(http://www.microsoft.com/download/en/details.aspx?id=11800)
  2. Mount the ISO and run the installation. You only need to install "Build Environments"
  3. Open the solution hmailserver\source\Server\hMailServer\hMailServer.sln
  4. In the Solution Explorer, right click on hMailServer and select Properties
  5. Select Configuraton Properties -> VC++ Directories
  6. Add "{PATH-TO-WDK}\inc\atl71;" to the list of Include Directories. (Replace {PATH-TO-WDK} with the location whre you installed it.
  7. Add "{PATH-TO-WDK\lib\ATL\i386" to the list of Library Directories. (Replace {PATH-TO-WDK} with the location whre you installed it.

3rd party libraries

Some 3rd party libraries which hMailServer relies on are large and updated frequently. Rather than including these large libraries into the hMailServer git repository, they have to be downloaded and built, currently manually. When you build hMailServer, Visual Studio will use a system environment variable, named hMailServerLibs, to locate these libraries.

Create an environment variable named hMailServerLibs pointing at a folder where you will store hMailServer libraries, such as C:\Dev\hMailLibs.

Building OpenSSL

  1. Download OpenSSL 1.0.2* from http://www.openssl.org/source/ and put it into %hMailServerLibs%<OpenSSL-Version>. Replace 1.0.2* with the latest 1.0.2-version available (1.0.2j at the time of this writing) You should now have a folder named %hMailServerLibs%<OpenSSL-version>, for example C:\Dev\hMailLibs\openssl-1.0.2j

  2. Start a VS2013 x86 Native Tools Command Prompt

  3. Change dir to %hMailServerLibs%<OpenSSL-version>.

  4. Run the following commands:

    Perl Configure no-asm VC-WIN32   
     ms\do_ms  
     nmake -f ms\ntdll.mak
     move out32dll out32 
     rmdir tmp32dll /s /q 
     
  5. Exit the command prompt.

  6. Start a VS2013 x64 Native Tools Command Prompt.

  7. Change dir to %hMailServerLibs%<OpenSSL-version>

  8. Run the following commands

    Perl Configure no-asm VC-WIN64A
     ms\do_win64a
     nmake -f ms\ntdll.mak
     move out32dll out64
     rmdir tmp32dll /s /q
     

The folder out32 now contains the 32-bit version of OpenSSL, and out64 contains the 64bit version

Building Boost

  1. Download Boost 1.63.0 from http://www.boost.org/ and put it into %hMailServerLibs%<Boost-Version>.
    You should now have a folder named %hMailServerLibs%<Boost-Version>, for example C:\Dev\hMailLibs\boost_1_63_0
  2. Open a Command prompt
  3. Change dir to %hMailServerLibs%<Boost-Version>.
  4. Run the following commands
      bootstrap.bat
      bjam.exe --toolset=msvc-12.0 --build-type=complete
      move stage\lib stage\lib32
      bjam.exe --clean
      rmdir bin.v2 /s /q
      bjam.exe --toolset=msvc-12.0 --build-type=complete address-model=64
      move stage\lib stage\lib64
     

Building hMailServer

Visual Studio 2013 must be started with Run as Administrator.

  1. Download the source code from this Git repository.
  2. Compile the solution hmailserver\source\Server\hMailServer\hMailServer.sln. This will build the hMailServer server-part (hMailServer.exe)
  3. Compile the solution hmailserver\source\Tools\hMailServer Tools.sln. This will build hMailServer related tools, such as hMailServer Administrator and hMailServer DB Setup.
  4. Compile hmailserver\installation\hMailServer.iss (using InnoSetup) This will build the hMailServer installation program.

Running in Debug

If you want to run hMailServer in debug mode in Visual Studio, add the command argument /debug. You find this setting in the Project properties, under Configuration Properties -> Debugging.

Releasing hMailServer

Without finding any serious issues:

  1. Run all integration tests on supported versions of Windows and the different supported databases.
  2. Run all server stress tests
  3. Enable Gflags (gflags /p /enable hmailserver.exe) and run all integration tests to check for memory issues
  4. Run for at least 1 week in production for hMailServer.com
  5. Wait for at least 500 downloads of the beta version

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 62.0%
  • C# 25.8%
  • PHP 4.1%
  • Smalltalk 2.5%
  • Objective-C 2.2%
  • Inno Setup 0.8%
  • Other 2.6%