Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,949

Downloads of v 17.5.1:

1,135

Last Update:

01 Dec 2017

Package Maintainer(s):

Software Author(s):

  • Alt-N Technologies

Tags:

mdaemon email server imap activesync pop3 smtp carddav caldav admin trial antispam

MDaemon Messaging Server

  • 1
  • 2
  • 3

17.5.1 | Updated: 01 Dec 2017

Downloads:

2,949

Downloads of v 17.5.1:

1,135

Maintainer(s):

Software Author(s):

  • Alt-N Technologies

MDaemon Messaging Server 17.5.1

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install MDaemon Messaging Server, run the following command from the command line or from PowerShell:

>

To upgrade MDaemon Messaging Server, run the following command from the command line or from PowerShell:

>

To uninstall MDaemon Messaging Server, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade mdaemon -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade mdaemon -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install mdaemon
  win_chocolatey:
    name: mdaemon
    version: '17.5.1'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'mdaemon' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '17.5.1'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller mdaemon
{
    Name     = "mdaemon"
    Version  = "17.5.1"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'mdaemon':
  ensure   => '17.5.1',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 10 Jul 2020.

Description

The MDaemon Messaging Server is trusted by customers in over 90 countries around the world to meet the needs of their small- to medium-sized businesses. MDaemon is a reliable and secure mail server that does not require expensive administration or impose high per-user costs. It simplifies messaging and collaboration requirements with an intuitive, user-friendly design offering enterprise-class features that can be managed with minimal training and support. MDaemon will be installed in the C:\MDaemon directory. A free 30 day trial is available. Keys can be requested by contacting [email protected]. To continue using the product after 30 days a license must be purchased. You can find pricing at http://www.altn.com/Purchase/Software/MDaemon/.


tools\chocolateyinstall.ps1

$ErrorActionPreference = 'Stop';

$OSVersion = [Environment]::OSVersion.Version

if($OSVersion.Major -eq 5 -and $OSVersion.Minor -le 0)
{
     Write-Error "This version of Windows is not supported."      
}
if($OSVersion.Major -lt 5)
{
     Write-Error "This version of Windows is not supported."
}

$Culture = Get-Culture
$CultureLangCode = $Culture.TwoLetterISOLanguageName


$UrIBase = New-Object Byte[] 32
if($CultureLangCode -eq "es")
{
	$LangCode = "es"
	$checksum = "9E322C813B1AC2D27199AD4A81B68852"
	$checksum64 = "8DC0791C1C5635BB62B4140A6013849E"
}
elseif($CultureLangCode -eq "fr")
{
	$LangCode = "fr"
	$checksum = "DAA259A99DFE0CB2B79BADCCBDCBA6A2"
	$checksum64 = "31EE535BDAC862CC9529316F3915C619"
}
elseif($CultureLangCode -eq "de")
{
	$LangCode = "ge"
	$checksum = "C006189D4AF3A3561099049CADF4D7E0"
	$checksum64 = "6F23799C585B378DDAC9CCAF5FED4A02"
}
elseif($CultureLangCode -eq "it")
{
	$LangCode = "it"
	$checksum = "FADE26AEDFC498DC30C4A2A35BEA8561"
	$checksum64 = "A29F5C9A6F886F868A8CC58033FFD7FD"
}
elseif($CultureLangCode -eq "ja")
{
	$LangCode = "jp"
	$checksum = "E773059E4299C4ED614762B104239C71"
	$checksum64 = "744703493E467120AE6555007B56661C"
}
elseif($CultureLangCode -eq "pt")
{
	$LangCode = "pt"
	$checksum = "2BD78F505C9FAE45AA31C1A5EEA28D6B"
	$checksum64 = "DC6E54FAAEC6736BAA20DDC580140636"
}
elseif($CultureLangCode -eq "ru")
{
	$LangCode = "ru"
	$checksum = "CD35C8CF76421DF18D170D5325374C43"
	$checksum64 = "E30FB692DA22191135DA39837945FF08"
}
elseif($CultureLangCode -eq "zh")
{
	$LangCode = "zh"
	$checksum = "A2962AFE8176E4D071A4896141C83DD7"
	$checksum64 = "75E568676A93C0ADEDD16CCC3A0330E7"
}
else
{
	$LangCode = "en"
	$checksum = "FB977B106461663A0CC033397ABA4AD1"
	$checksum64 = "D84C36B4F0C53BF9D2BF8CB99E401EC5"
}

$Version = "17.5.1"
$FileVersion = "1751"
$UrlBase = "76492d1116743f0423413b16050a5345MgB8AFEAbABlAFkALwBSAHkAawAxAGYAOQBxAEMASgA5AEUAZwBEAGEATwBiAEEAPQA9AHwAYwA4ADMAZgA2ADcAOQBhADEAYwBhAGQANQAwAGIANgA3AGQAZgA4AGQANQA3ADMANgBlADYAMQA
yADMAMQA3ADMANAAzADIAMwBkAGUAMQBkADQAMQA2AGQAZAA0ADkANwAzADkAMQA3ADkAYQBhADMAMgBjADQAYgBiAGQANwBiADkANAAwAGMAMQBjADQAZAA2ADMAOABiADUAZgA3ADkAOQAzADYAZgBjADEAMQBjAGEAMAAwADcAMAA3ADIANABmADgAZQ
BjADIANgBkADEANQBiADkAZAAyAGIAMQBmADgAMQBmAGUANgA2ADkAYQAzAGQAZgAwADQANABlAGYAMwBkAGMANgAxADkAMwAxAGUANwBjADQAYwA5ADUAZgA5AGUAZQBjADEANgBmAGYAMQBlADkAMQA3ADAAMgA1AGEANwAxAGIAZAAzADgANwAzADkAY
wBmAGIAOABhAGEANgA5AGMAOQA1ADEAOQA3AGUAZQBlAGUAZgA1ADgA"
$UrlBase64 = "76492d1116743f0423413b16050a5345MgB8AE4AUwA5AHMAbAB4ADYAQgBYADcAeAA3AFEAOABFAFcAcABpAE8AdwBwAFEAPQA9AHwANQA1ADAAZABjAGYAYwA1ADQAYwBkAGQANAA2ADYAZgAwADUAZgBhADYANwAyAGQAZAA0AGUAM
wBiADIAMwA2ADIAOAAzADcAMAA5ADYAMQA2AGMAZAA4AGYAOAAzAGEAOQA5ADcAMgBkADMAYQA5ADQAYgBlADMAZAAzAGEAMQBlAGMANgBmAGMANAA2AGIAYQAwAGYANABkADAAOAAwADMANQBiAGMAYgA0ADQANgAyADYAYgA1AGMAOABmAGIANwAyADkA
YQBlADkANwAyAGIAOAAxADgAZgA3ADAAZABiAGQAYQBkAGYAMQAxAGUANwA4ADgANwA4ADgAYwAzADAAZgBjAGIAOQA0ADQAMQBkAGEAYwBiADQANABiAGIAYwBlAGUANgA5ADcAMgAyADcAZgA2ADQAZAAzAGIAZAA2AGQAYQAzADgAMQA0ADAAYwAzADc
AZgBlAGYAYwBjADQAYgA4ADgAOQA1ADAAYQBjADkANQBiAGMANgAwADcA"
$UrlBase = ConvertTo-SecureString $UrlBase -Key $UrIBase
$UrlBase64 = ConvertTo-SecureString $UrlBase64 -Key $UrIBase
$BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($UrlBase)
$UrlBase = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)
$BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($UrlBase64)
$UrlBase64 = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)
$url = $UrlBase + $FileVersion + "_" + $LangCode + ".exe"
$url64 = $UrlBase64 + $FileVersion + "_" + $LangCode + ".exe"

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $toolsDir
  fileType      = 'EXE'
  url           = $url
  url64bit      = $url64

  silentArgs    = '/s'
  validExitCodes= @(0, 3010, 1641)

  softwareName  = 'mdaemon*'
  checksum      = $checksum
  checksumType  = 'md5'
  checksum64    = $checksum64
  checksumType64= 'md5'
}

Install-ChocolateyPackage @packageArgs

$osBitness = Get-ProcessorBits

tools\chocolateyuninstall.ps1


$ErrorActionPreference = 'Stop';

$packageName = 'mdaemon'
$softwareName = 'mdaemon*'
$installerType = 'EXE' 

$validExitCodes = @(0, 3010, 1605, 1614, 1641)
if ($installerType -ne 'MSI') {
  $silentArgs = '/s'
  $validExitCodes = @(0)
}

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName

$separator = ".exe "
foreach($item in $key)
{ write-host $item }

if ($key.Count -eq 1) {
  $key | % { 
    $file = "$($_.UninstallString)"
	Write-Debug "Get-UninstallRegistryKey returned $file"
	
	$filea,$fileb = $file -Split $separator
	$file = $filea + $separator
	
	$silentArgs = $silentArgs + " " + $fileb 
	
	Write-Debug "After parsing file is set to $file"
	Write-Debug "After parsing silentArgs is set to $silentArgs"

    if ($installerType -eq 'MSI') {
      $silentArgs = "$($_.PSChildName) $silentArgs"

      $file = ''
    }

    Uninstall-ChocolateyPackage -PackageName $packageName `
                                -FileType $installerType `
                                -SilentArgs "$silentArgs" `
                                -ValidExitCodes $validExitCodes `
                                -File "$file"
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$key.Count matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | % {Write-Warning "- $_.DisplayName"}
}



tools\LICENSE.txt

LICENSE

ALT-N TECHNOLOGIES END USER LICENSE AGREEMENT
PLEASE READ THIS DOCUMENT CAREFULLY BEFORE INSTALLING OR USING THE SOFTWARE.

This ALT-N End User License Agreement (the "Agreement") is a legal agreement between you, individually if you are agreeing to it in your own capacity, or if you are authorized to acquire the Software (defined below) on behalf of your company or another entity, between the entity for whose benefit you act (in either case, "You" or "Your"), and ALT-N Technologies, Ltd. ("ALT-N") with a principal place of business at 4550 State Highway 360, Suite 100, Grapevine, TX 76051 (together the "Parties" and individually a "Party").

BY INDICATING YOUR ACCEPTANCE BY CLICKING ON THE APPROPRIATE BUTTON BELOW, OR BY INSTALLING, ACTIVATING OR USING THE SOFTWARE, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS AGREEMENT.  IF, PRIOR TO INSTALLING, ACTIVATING OR USING THE SOFTWARE, YOU DECIDE YOU ARE UNWILLING TO AGREE TO THE TERMS OF THIS AGREEMENT, YOU HAVE NO RIGHT TO USE THIS SOFTWARE AND YOU SHOULD PROMPTLY RETURN THE SOFTWARE TO ALT-N, DELETE IT, OR DISABLE IT.  IF YOU HAVE ANY QUESTIONS OR CONCERNS ABOUT THE TERMS OF THIS AGREEMENT, PLEASE CONTACT ALT-N AT [email protected].

Evaluation Period.

Unless otherwise set forth in the Documentation (defined below) for the applicable Software, and subject to the terms and conditions of this Agreement, You may use the Software without requiring a Registration Key (defined below) during the Evaluation Period (defined below).  If You wish to continue using the Software following the expiration of the Evaluation Period, You must obtain, and where applicable, pay for a Registration Key.  THIS AGREEMENT DOES NOT AFFECT YOUR MANDATORY STATUTORY RIGHTS APPLICABLE IN YOUR JURISDICTION, TO THE EXTENT THAT YOU MAY BE ENTITLED TO SUCH MANDATORY STATUTORY RIGHTS.

1.  Definitions.  Unless the context requires otherwise, the defined terms in this Agreement shall have the meanings set out below (and where the context so admits the singular shall include the plural and vice versa).
"Registration Key" is the code that must be entered in the Software registration wizard in order to use the Software beyond the Evaluation Period.
"Authorized Users" means any of Your employees or dependent contractors to whom You give permission to administer Your use of the Software.  This Agreement does not convey the right to have the Software hosted by a third party.
"Documentation" means the applicable installation guide or standard end user documentation prepared and supplied by ALT-N for the specific type and version of Software.  Documentation is also available at http://www.altn.com/Downloads/Literature or by contacting ALT-N at [email protected].  For certainty, Documentation does not include any installation guide or end-user documentation that is prepared by any person other than by ALT-N or any modifications made to documentation made by any person other than ALT-N.
"Evaluation Period" means the period of thirty (30) consecutive days commencing with, and including, the day that You first install the Software.
"Software" means any of the ALT-N proprietary software (comprised of ALT-N proprietary:  software, interfaces, content and data, that may or may not technically be considered software code; and Third Party Components), or a portion thereof, provided to You under this Agreement, in whatever form, medium or manner provided or subsequently installed or used and including all updates and upgrades thereto for which other terms and conditions are not provided.  The term "Software" does not include any Third Party Software, whether or not the Third Party Software is distributed by ALT-N, or the Third Party Software accompanies, is provided with, or operates in conjunction with, the Software.
"Third Party Components" means software and interfaces licensed by ALT-N from a third party for incorporation into an ALT-N software product, and distributed as an integral part of that ALT-N product under an ALT-N brand but does not include Third Party Software.
"Third Party Hardware" means wireless handheld smartphone, computer, equipment, peripherals and any other hardware product that is not an ALT-N Product.
"Third Party Items" means Third Party Hardware, Third Party Software and Third Party Products.
"Third Party Products" means Third Party Hardware and Third Party Software and any other commercial products that are not ALT-N Products.
"Third Party Services" means services provided by a third party, including internet or mobile services  and any website that is not operated by ALT-N.
"Third Party Software" means standalone software applications proprietary to a third party that are provided by ALT-N or its authorized distributors bundled with, or separately for use with, the Software.
"User Account" means a single email address.

2.  Software and Documentation License.  The Software is licensed and not sold under this Agreement.  Your license to use the Software is conditional upon payment of the license fees, including fees for the Registration Key, if any.  Subject to the terms and conditions herein, this Agreement grants You a personal, revocable, non-exclusive, non-transferable license that permits You and Your Authorized Users, collectively:
(a) if You have purchased a Registration Key, to install and use a single copy of the Software, on a single computer to support the number of User Accounts corresponding to the fees paid to ALT-N or ALT-N's authorized distributor for the Software, including the Registration Key.  Instructions on how to register the Software can be found in the Documentation and at http://www.altn.com; or
(b) if You have purchased a Registration Key and You are obtaining a redundant version of the Software solely for high availability and/or disaster recovery purposes for use on Your disaster recovery computer, You represent and warrant that (i) You may actively run the redundant version of the Software on a computer, provided it is not running on a primary production computer, unless (1) the primary production computer related to the primary production version of the Software fails,  (2) the Software or the primary production computer associated with the Registration Key is being upgraded or replaced, or (3) other temporary reasons that disrupt all or a material part of Your business operations; (ii) You will not utilize the redundant version of the Software to monitor any items not being monitored by the primary production computer; and (iii) You will promptly restore the primary production computer to its correct operating state in order to support Your daily activities; or
(c) if You have not purchased a Registration Key, to install a single copy of the Software on a single computer and, during the Evaluation Period, use the Software for the sole purpose of evaluating the suitability of the Software for Your internal or personal use.
If You do not obtain and use a Registration Key to register the Software prior to the expiry of the Evaluation Period, the Software will cease to function and the only part of the Software that will operate until You register the Software is the registration wizard required to do so.
If You are using the Software pursuant to Section 2(c) above, then the license rights set out above apply only for the Evaluation Period.
In all cases, the license(s) granted under this Agreement permit You and Your Authorized Users to use or allow the use of the Software only for Your own internal or personal purposes.
This Agreement and the licenses granted herein, do not imply any rights or entitlement to:  (a) future upgrades or updates of the Software or Third Party Software; or (b) acquire any new or modified Third Party Service.  Notwithstanding the foregoing, the Software may include functionality to automatically check for updates or upgrades to the Software.  Unless You, or a third party with whom You have an agreement to provide Software or portions thereof to You, configures the Software to preclude the transmission or use of upgrades or updates to the Software or Third Party Software, You hereby agree that ALT-N may (but is not obligated to) make such updates or upgrades available to You from time-to-time.  If ALT-N, either directly or through a distributor, makes any updates or upgrades to the Software available to You, such updates or upgrades shall be subject to the terms and conditions of this Agreement unless the Software is expressly provided to You under other, or additional terms and conditions, in which case, if You accept the associated terms and conditions or use the update or upgrade, those other, or additional terms and conditions (which may include the payment of additional fees), shall apply.
You may not print, distribute or modify the Software, in whole or in part.  Except to the extent that ALT-N is expressly precluded by law from prohibiting these activities, You may not copy, reproduce or in any other manner duplicate the Software, in whole or in part, except as authorized in this Agreement or in a separate written agreement between You and ALT-N.  For the purposes of this provision "copy" or "reproduce" shall not include copying of statements and instructions of the Software that naturally occurs during normal program execution when used in accordance with and for the purposes described in the Documentation or in the course of making unmodified regular back-ups of the Software or of the computer or system on which the Software is installed, in accordance with industry standard business practices.  You may not copy any Documentation or portion thereof unless specifically authorized in writing to do so by ALT-N.  You may download a single copy of the Documentation from http://www.altn.com/Downloads/Literature solely for Your use under these terms and conditions and in conjunction with the use of the Software.

3.  Use of the Software.  You are responsible for all activities with respect to Your use of the Software undertaken by You and Your Authorized Users and You will ensure that:
(a) You and Your Authorized Users only use the Software and any portion thereof, in accordance with this Agreement, all applicable laws and regulations, and the appropriate Documentation for the Software or portion thereof;
(b) You have the right and authority to enter into this Agreement, either on Your own behalf or on behalf of a company or other entity, or minor, and You are over the age of majority;
(c) Any information that is provided to ALT-N pursuant to this Agreement is true, accurate, current and complete;
(d) You and Your Authorized Users will not knowingly, after making such inquiries as a reasonable person in Your or Your Authorized User's position would undertake, use or permit others to use the Software or portion thereof in isolation or with any other software or data in a manner that in ALT-N's judgment, acting reasonably, interferes with, degrades or adversely affects any software, system, network or data used by any person including ALT-N or otherwise has a detrimental effect upon ALT-N or any of its affiliates, and You will immediately cease any such activity upon ALT-N delivering notice of same to You;
(e) Without limiting Section 3(d) above, no part of the Software will be used as a transport for the dissemination of bulk unsolicited commercial email (commonly referred to as "spam");
(f) You and Your Authorized Users will not use the Software, or any part thereof, to commit or attempt to commit a crime or facilitate the commission of any crime or other illegal or tortious acts, including any breach of privacy or infringement, violation or misappropriation of any intellectual property rights and/or other proprietary rights of any third party (including, without limitation, copying and sharing content for which You and Your Authorized Users do not have the rights to copy and share, or unlawfully circumventing any digital rights management protections);
(g) You and Your Authorized Users will not sell, rent, lease, sub-license, or transfer, or attempt to sell, rent, lease, sub-license, or transfer, the Software or any part thereof (including operating a service bureau or equivalent service using the Software) to any other person, without the prior express written permission of ALT-N; and
(h) You and Your Authorized Users will cooperate with ALT-N and provide information requested by ALT-N to assist ALT-N in investigating or determining whether there has been a breach of this Agreement and provide ALT-N or an ALT-N appointed independent auditor with access to the premises and computers where the Software is or has been used and any associated records.  You hereby authorize ALT-N to cooperate with:  (i) law enforcement authorities in the investigation of suspected criminal violations; (ii) third parties in investigating acts in violation of this Agreement; and (iii) system administrators at Internet service providers, networks or computing facilities in order to enforce this Agreement.  Such cooperation may include ALT-N disclosing Your or Your Authorized Users' username, IP address, or other personal information.

4.  Third Party Items and Third Party Services.  In connection with Your use of the Software, You may acquire or obtain access to, Third Party Items and Third Party Services.  You are responsible for ensuring that the Third Party Items and Third Party Services (including, without limitation, computer systems, internet connectivity and cellular services) with which You choose to operate the Software meets ALT-N's minimum requirements, including, without limitation, the processing speed, memory and the availability of dedicated internet access required for the Software as set out in the Documentation, and that You and Your Authorized Users' use of such Third Party Items and/or Third Party Services with the Software is not in violation of any licenses, terms, conditions, laws, rules and/or regulations respecting the use of such Third Party Items and Third Party Services.

5.  Additional Terms for Third Party Software and Third Party Components.  Without limiting the foregoing, the Software may include Third Party Components, and Third Party Software may be provided in conjunction with Software when originally shipped by ALT-N or may subsequently be transmitted, distributed or otherwise made available to You from time-to-time.  Your use of the Third Party Software and Third Party Components (including any updates or upgrades thereto) may be subject to separate or additional terms and conditions.  These separate or additional terms and conditions, if any, will be made available in a text file accompanying the Software and/or, in the case of Third Party Software, may be made available when You use or install the Third Party Software for the first time.  With respect to Third Party Software provided to You by ALT-N, ALT-N is only able to provide such software with Your understanding, acknowledgment and agreement that such software is:  (a) provided as a convenience to You only; and (b) if it is not accompanied by a separate software license, it is subject to the terms and conditions of this Agreement as though it were Software, except that in all cases it is provided by ALT-N "AS IS" and "AS AVAILABLE" with no express or implied conditions, endorsements, guarantees, representations or warranties.  If You wish to obtain Third Party Software on other terms, You should acquire this Third Party Software directly from its suppliers.  In no event shall such separate license agreements or additional terms and conditions between You and the supplier be binding on ALT-N or impose any additional obligations, or obligations inconsistent with the terms of this Agreement, upon ALT-N whatsoever.  To the extent that any particular Third Party Component is covered by additional terms and conditions that provide You with rights to use, copy, distribute, or modify all or part of such Third Party Component broader than the rights afforded You under this Agreement for the Software then, solely to the extent You can exercise such broader rights without breaching the terms of this Agreement for the remainder of the Software, You obtain the benefit of such broader rights.

6.  Intellectual Property.  Neither You nor Your Authorized Users acquire hereby any ownership right, title or interest in or to any intellectual property or other proprietary rights, including patents, designs, trademarks, copyright, database rights or rights in any confidential information or trade-secrets, in or relating to the Software or any part thereof.  Neither You nor Your Authorized Users acquire any license rights in or related to the Software or any portion thereof, other than the rights expressly licensed to You under this Agreement or in another mutually agreed upon written agreement that You may have with ALT-N.  Any rights not expressly granted herein are expressly reserved.  For clarity, notwithstanding anything else in this Agreement, in no event shall the licenses granted in the Software herein extend, or be construed to extend, to the use of any Third Party Software either on a standalone basis or in conjunction with the Software, and, without limiting the foregoing, in no event shall the licenses granted hereunder be construed such that any supplier of such Third Party Software be able to successfully assert that use of such Third Party Software either in conjunction with all or a part of the Software or on a standalone basis are licensed under ALT-N's patents by virtue of the fact that the Software is licensed hereunder.  The Software, including any copies You make of the Software, is only licensed, and not sold, to You, and the Software, all Documentation and any site(s) which allow You to access any services are protected by Canadian, U.S. and international copyright and patent laws and international treaty provisions.  There are severe penalties, both civil and criminal, for intellectual property infringement.  You agree that nothing in this Agreement shall adversely affect any rights and recourse to any remedies, including, without limitation, to injunctive relief, that ALT-N may have under any applicable laws relating to the protection of ALT-N's intellectual property or other proprietary rights.

7.  Export, Import and Use Restrictions and U.S. Government Licenses.
(a) You acknowledge that the Software includes cryptographic technology that may be subject to export, import, and/or use controls by Government Authorities (as hereinafter defined) by way of law or regulation.  You agree that the Software will not be exported, imported, used, transferred, or re-exported except in compliance with the laws and regulations of the national and/or other (sub-national and/or supranational) government authorities with authority over the country(ies) and/or territory(ies) from which the Software are being exported or to which the Software are being imported (collectively, the "Government Authority(ies)").  Without limitation, You agree the Software will not be exported:  (i) to countries subject to U.S. economic sanctions and embargoes and (ii) to persons or entities prohibited from receiving U.S. exports or U.S.-origin items.  If You have any questions regarding this Section, please contact ALT-N via [email protected].  You hereby represent that:  (A) to the best of Your knowledge You are eligible to receive the Software under applicable law; (B) You will not use the Software in the development, production, handling, maintenance, storage, detection, identification or dissemination of chemical, biological or nuclear weapons or their missile delivery systems, or of materials or equipment that could be used in such weapons or their missile delivery systems, or resell or export to anyone or any entity involved in such activity; and (C) You will ensure that Authorized Users use the Software in accordance with the foregoing restrictions.  Notwithstanding any agreement with a third-party or any provision of law, regulation or policy, if You are any agency of the government of the United States of America, then Your rights in respect of the Software shall not exceed the rights provided under this Agreement, unless expressly agreed upon by ALT-N in a written agreement between You and ALT-N and signed by a Chief Operating Officer or Chief Executive Officer of ALT-N.
(b) You hereby agree to indemnify ALT-N, its affiliates and its suppliers from any claims, actions, liability or expenses (including reasonable lawyers' fees and costs) resulting from Your failure to act in accordance with the acknowledgements, agreements, and representations in this Section.

8.  Confidentiality and No Reverse Engineering.  You acknowledge and agree that the Software was: (a) developed at considerable time and expense by ALT-N and/or its affiliates and their respective suppliers; and (b) that the Software, including the Registration Key, contains confidential information including the trade-secrets of ALT-N and its suppliers.  This Agreement gives You no right to obtain from ALT-N or its distributors any source code for the Software, and, except to the extent that ALT-N is expressly precluded by law from prohibiting these activities, You agree that You will not alter, modify, adapt, create derivative works, translate, deface, or Reverse Engineer (defined below) the Software, including the Registration Key, or attempt to do so, or permit, acquiesce, authorize or encourage any other party to do the same.  For the purpose of this Agreement, "Reverse Engineer" includes any act of reverse engineering, translating, disassembling, decompiling, decrypting or deconstructing (including any aspect of "dumping of RAM/ROM or persistent storage", "cable or wireless link sniffing", or "black box" reverse engineering) data, software (including interfaces, protocols, and any other data included in or used in conjunction with programs that may or may not technically be considered software code), service, or hardware or any method or process of obtaining or converting any information, data or software from one form into a human-readable form.

9.  Term.  This Agreement shall be effective upon Your agreeing to be bound by the terms of this Agreement (as described in the preamble above) and shall continue in effect unless terminated in accordance with the provisions set out herein.

10.  Remedies and Termination for Default.
(a) If You or Your Authorized Users breach this Agreement, ALT-N may, in addition to all other rights and remedies provided by this Agreement or by law, immediately terminate this Agreement.  Where You have provided ALT-N with accurate contact information, ALT-N shall provide You with notice of termination.
(b) Without limiting the generality of the foregoing sentence, You will be deemed to be in breach of this Agreement and ALT-N will have the right to terminate this Agreement if:
(i) You fail to comply with or perform a term or condition herein;
(ii) You interfere with ALT-N's customer service or business operations or the services or operations of its suppliers; or
(iii) any monthly or other periodic fees or costs associated with Your use of the Software are not paid within thirty (30) days of their becoming due.
(c) In addition, ALT-N may terminate this Agreement without any liability whatsoever to You or Your Authorized Users if ALT-N is prevented from providing any portion or all of any Software, or any services made available through the Software, by any law, regulation, requirement or ruling issued in any form whatsoever by judicial or other governmental body.
(d) Nothing herein shall be construed to require ALT-N to seek a waiver of any such law, rule, regulation, or restriction, or seek judicial review or appeal of any court order.  ALT-N shall not have any liability to You or Your Authorized Users arising from or related to the termination of this Agreement in accordance with this Section.

11. Effect of Termination.  Upon termination of this Agreement, however caused, or the free evaluation period for the Software expires, You will immediately discontinue all use of the Software (or item of Software for which the license has expired) and return all copies of such Software that are in Your possession or control.  In the event of the termination of this Agreement by ALT-N pursuant to provisions of this Agreement, You shall pay to ALT-N all fees (including reasonable lawyers' fees and costs) and related expenses expended or incurred by ALT-N in the enforcement of its rights hereunder.  Notwithstanding the foregoing, because of the nature of Software, it may be impossible to return the Software because the Software is installed on a desktop or server such that all You could return is a further reproduction of the Software.  In such cases, please contact ALT-N via [email protected] for further instructions.

12. Indemnity/Liability.  You shall defend, indemnify, and hold harmless ALT-N, ALT-N's affiliates, suppliers, successors, agents, authorized distributors and assigns and each of their directors, officers, employees and independent contractors (each a "ALT-N Indemnified Party") from any claims, damages, losses, costs or expenses (including, without limitation, reasonable lawyers' fees and costs) incurred by a ALT-N Indemnified Party arising from:  (a) infringement of patents or other intellectual property or proprietary rights arising from combining with or using any software, system or service in connection with the Software or any portion thereof; (b) damages arising from Your breach of any of the following Sections of Agreement:  "Use of the Software" (Section 3), "Software and Documentation License" (Section 2), "Intellectual Property" (Section 6), "Export, Import and Use Restrictions and U.S. Government Licenses" (Section 7), "Confidentiality and No Reverse Engineering" (Section 8); (c) any injury, death or property damage arising from Your or Your Authorized Users' negligence or misconduct in connection with Your or Your Authorized Users' use of the Software or any portion thereof; or (d) claims made by third parties against ALT-N arising from or related to Your or Your Authorized Users' use of the Software or any portion thereof (other than such claims that arise solely from the use of the Software contemplated by and strictly in accordance with the terms of this Agreement and the Documentation which specifically pertains to such version of the Software).  No remedy herein conferred upon ALT-N is intended to be, nor shall it be construed to be, exclusive of any other remedy provided herein or as allowed by law or in equity, but all such remedies shall be cumulative.

13. Limited Warranties.
(a) If during the thirty (30) day period following Your purchase of a Registration Key (the "Warranty Period"), the Software as made available by ALT-N or any ALT-N authorized distributor is not capable of performing the functions described in the standard end user Documentation ("Specifications") when used as specified by ALT-N in the Documentation applicable to the specific type and version of the Software, ALT-N will, at its sole option and discretion, either make reasonable efforts to correct or provide You with a workaround for such problem (which fix or workaround may be provided to You at ALT-N's reasonable discretion in one of a variety of forms, including in the course of telephonic or email customer support provided to You, in a generally available software fix release, on ALT-N's web site or in any other form of which ALT-N advises You) or provide You with a refund for the one time fees paid by You for the applicable Software, including the Registration key, if You cease to use the Software and the media on which the Software was provided to You and all packaging related thereto is returned to ALT-N in accordance with Your normal warranty return mechanism (which may be through point of purchase) within the Warranty Period together with proof of purchase.
(b) Notwithstanding anything to the contrary in this Agreement, updates, and upgrades provided to You free of charge are provided "AS IS" and without warranty of any kind.
(c) Updates and upgrades, for which You have paid additional license fees, shall be subject to the warranty set out above for a period of thirty (30) days from the date that the upgrade for any Software is delivered to You.
(d) The above obligation will not apply if the failure of the Software to perform the functions described in the Specifications is due to:  (i) use of the Software in a manner inconsistent with any of Your obligations set out in the Sections of this Agreement entitled, "Required Third Party Items" (Section 4), "Use of the Software" (Section 3), "Software and Documentation License" (Section 2), "Export, Import and Use Restrictions and U.S. Government Licenses" (Section 7) or "Confidentiality and No Reverse Engineering" (Section 8) or in a manner inconsistent with the instructions, specified by ALT-N in the Documentation applicable to the specific type and version of the Software; (ii) a malfunction or other problem related to any hardware, network, software or communication system other than the Software; or (iii) to any external causes affecting the Software, including the media upon which the Software is provided, such as accident, disaster, electrostatic discharge, fire, flood, lightning, water or wind, correction of errors attributable to software other than the Software, or defects due to repairs or modifications not authorized by ALT-N.
(e) There is no warranty on free Software or on Software during the Evaluation Period.  If any item of such Software fails to operate in accordance with its Documentation within thirty (30) days following the date You install it, You may contact ALT-N and ALT-N shall identify the support, if any, that is available for such Software (which support may be provided to You at ALT-N's reasonable discretion in one of a variety of forms, including in the course of telephonic or email customer support provided to You, in a generally available software fix or release, on ALT-N's website or in any other form of which ALT-N advises You).

14.  Support.  If You wish to purchase support from ALT-N, please contact ALT-N at 1-817-601-3222 (or such other location listed on http://www.altn.com/Support) or an ALT-N authorized distributor.

15.  Disclaimer.
THE LAW OF SOME JURISDICTIONS MAY NOT ALLOW THE LIMITATION OF LIABILITY OR THE EXCLUSION OF WARRANTIES, CONDITIONS, ENDORSEMENTS, GUARANTEES, OR REPRESENTATIONS IN CONTRACTS WITH CONSUMERS AND TO THE EXTENT YOU ARE A CONSUMER THESE EXCLUSIONS MAY NOT APPLY TO YOU.
(a) General Warranties.
(i) TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, EXCEPT AS EXPRESSLY SET OUT IN THIS AGREEMENT, ALL CONDITIONS, ENDORSEMENTS, GUARANTEES, REPRESENTATIONS, OR WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, ANY CONDITIONS, ENDORSEMENTS, GUARANTEES, REPRESENTATIONS OR WARRANTIES OF DURABILITY, FITNESS FOR A PARTICULAR PURPOSE OR USE, MERCHANTABILITY, MERCHANTABLE QUALITY, NON-INFRINGEMENT, SATISFACTORY QUALITY, OR TITLE, OR ARISING FROM A STATUTE OR CUSTOM OR A COURSE OF DEALING OR USAGE OF TRADE, AND ALL OTHER WARRANTIES, REPRESENTATIONS, CONDITIONS, ENDORSEMENTS OR GUARANTEES OF ANY KIND, EITHER EXPRESS OR IMPLIED, ARE HEREBY DISCLAIMED AND EXCLUDED TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW.
(ii) To the maximum extent permitted under applicable law, any implied warranties or conditions relating to the Software to the extent they cannot be excluded as set out above, but can be limited, are hereby limited to ninety (90) days from the date You first installed any portion of Software on any computer.
(b) Third Party Items and Third Party Services.
(i) EXCEPT TO THE EXTENT SPECIFICALLY PROHIBITED BY APPLICABLE LAW, THE THIRD PARTY SERVICES AND THIRD PARTY ITEMS ARE NOT UNDER THE CONTROL OF ALT-N, ALT-N DOES NOT ENDORSE ANY PARTICULAR THIRD PARTY ITEMS OR THIRD PARTY SERVICES, AND ALT-N HAS NO RESPONSIBILITY WHATSOEVER FOR YOUR SELECTION, USE, ACCESS, OR IMPLEMENTATION OF THE THIRD PARTY SERVICES OR THIRD PARTY ITEMS.
(ii) THE FOREGOING APPLIES REGARDLESS OF:  (A) HOW YOU ACQUIRE OR OBTAIN ACCESS TO THIRD PARTY ITEMS AND/OR THIRD PARTY SERVICES, I.E. WHETHER INDEPENDENT OF, OR THROUGH ALT-N; OR (B) WHETHER ANY SUCH THIRD PARTY ITEMS OR THIRD PARTY SERVICES  ARE REQUIRED IN ORDER TO USE ALL OR ANY PORTION OF THE SOFTWARE.
(iii) WITHOUT LIMITING THE FOREGOING, EXCEPT TO THE EXTENT SPECIFICALLY PROHIBITED BY APPLICABLE LAW, ALL THIRD PARTY SERVICES AND THIRD PARTY ITEMS ARE PROVIDED BY ALT-N ON AN "AS IS" AND "AS AVAILABLE" BASIS, WITHOUT ANY CONDITION, ENDORSEMENT, GUARANTEE, REPRESENTATION OR WARRANTY OF ANY KIND, AND ALT-N SHALL HAVE NO LIABILITY WHATSOEVER TO YOU OR ANY THIRD PARTY CLAIMING BY OR THROUGH YOU, FOR ANY ISSUE RELATING TO THE THIRD PARTY SOFTWARE INCLUDING, WITHOUT LIMITATION:  (A) THE ACCURACY, TRANSMISSION, TIMELINESS OR CONTINUED AVAILABILITY OF SUCH THIRD PARTY ITEMS, OR THIRD PARTY SERVICES, OR OF ANY PORTION OF THE SOFTWARE THAT IS DESIGNED SOLELY TO ENABLE SUCH ACCESS; (B) THE PERFORMANCE OR NON-PERFORMANCE OF THE THIRD PARTY ITEMS, OR THIRD PARTY SERVICES; OR (C) THE INTEROPERABILITY OF THE THIRD PARTY SOFTWARE WITH ALL OR A PORTION OF THE SOFTWARE.
(iv) WITHOUT LIMITING THE FOREGOING, EXCEPT TO THE EXTENT SPECIFICALLY PROHIBITED BY APPLICABLE LAW, YOU SPECIFICALLY AGREE THAT ALT-N IS NOT RESPONSIBLE OR LIABLE FOR, ANY VIRUSES, OR ANY THREATENING, DEFAMATORY, OBSCENE, TORTIOUS, OFFENSIVE OR ILLEGAL THIRD PARTY SERVICES, THIRD PARTY ITEMS OR FOR ANY THIRD PARTY ITEMS OR THIRD PARTY SERVICES OR THE TRANSMISSION THEREOF, THAT INFRINGE ANY THIRD PARTY INTELLECTUAL PROPERTY RIGHTS.  YOUR RECOURSE IN THE EVENT OF ANY SUCH CLAIM WITH RESPECT TO ANY THIRD PARTY ITEMS, OR THIRD PARTY SERVICES, SHALL BE SOLELY AGAINST THE RELEVANT THIRD PARTIES.
(c) Mission Critical Applications.  THE SOFTWARE AND ANY PART THEREOF, IS NOT SUITABLE FOR USE IN MISSION CRITICAL APPLICATIONS OR IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE CONTROLS, INCLUDING, WITHOUT LIMITATION, OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, AND LIFE SUPPORT OR WEAPONS SYSTEMS.  WITHOUT LIMITING THE FOREGOING, YOU REPRESENT AND WARRANT THAT IN THE USE OF THE SOFTWARE, YOU WILL MAINTAIN ADEQUATE DATA RECOVERY AND BACK-UP SYSTEMS, AND IN THE EVENT OF:  (i) USE OR SERVICE INTERRUPTION; OR (ii) DIFFICULTIES OR ERRORS IN DATA TRANSMISSION; YOU AGREE TO IMMEDIATELY MITIGATE ANY AND ALL LOSSES AND DAMAGES AND REPORT SUCH ISSUES TO ALT-N.

16. Limitation of Liability.
SOME COUNTRIES DO NOT ALLOW THE LIMITATION OR EXCLUSION OF CONSEQUENTIAL, INDIRECT OR OTHER DAMAGES IN CONTRACTS WITH CONSUMERS AND TO THE EXTENT YOU ARE A CONSUMER THE LIMITATIONS OR EXCLUSIONS IN THIS SECTION MAY NOT APPLY TO YOU.
(a) TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW AND SUBJECT TO THE SPECIFIC REMEDIES SET OUT IN THIS AGREEMENT, IN NO EVENT SHALL ALT-N BE LIABLE FOR ANY OF THE FOLLOWING TYPES OF DAMAGES:  CONSEQUENTIAL, EXEMPLARY, INCIDENTAL, INDIRECT, SPECIAL, PUNITIVE, OR AGGRAVATED DAMAGES, DAMAGES FOR LOSS OF BUSINESS PROFITS OR REVENUES, FAILURE TO REALIZE ANY EXPECTED SAVINGS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, LOSS OF BUSINESS OPPORTUNITY, OR CORRUPTION OR LOSS OF DATA, FAILURES TO TRANSMIT OR RECEIVE ANY DATA, PROBLEMS ASSOCIATED WITH ANY APPLICATIONS USED IN CONJUNCTION WITH THE SOFTWARE, DOWNTIME COSTS, LOSS OF THE USE OF THE SOFTWARE OR ANY PORTION THEREOF, COST OF SUBSTITUTE GOODS, COSTS OF COVER, FACILITIES OR SERVICES, COST OF CAPITAL, OR OTHER SIMILAR PECUNIARY LOSSES ARISING OUT OF OR RELATED TO THIS AGREEMENT OR THE SOFTWARE INCLUDING THE USE OR INABILITY TO USE, PERFORMANCE OR NON-PERFORMANCE OFTHE SOFTWARE, WHETHER OR NOT SUCH DAMAGES WERE FORESEEN OR UNFORESEEN, AND EVEN IF ALT-N HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
(b) To the maximum extent permitted by applicable law, in no event shall the aggregate liability of ALT-N exceed the greater of: (i) the amount paid by You for the Software (or portion thereof), including the Registration Key, that gave rise to the claim; and (ii) five (5) United States dollars.
(c) To the maximum extent permitted by applicable law, notwithstanding anything else in this Agreement, to the extent ALT-N is liable to You, ALT-N shall only be liable for damages incurred during the period of such failure, delay or non-performance of the Software.
(d) Nothing in this Section limits ALT-N's liability to You in the event of:  (i) death or personal injury to the extent resulting directly from ALT-N's negligence; or (ii) any intentional fraudulent act or intentional fraudulent omission of ALT-N.
(e) TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, EACH PARTY SHALL BE LIABLE TO THE OTHER ONLY AS EXPRESSLY PROVIDED IN THIS AGREEMENT AND SHALL HAVE NO OTHER OBLIGATION, DUTY, OR LIABILITY WHATSOEVER WHETHER IN CONTRACT, TORT, OR OTHERWISE.
(f) TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE LIMITATIONS, EXCLUSIONS, AND DISCLAIMERS IN THIS AGREEMENT SHALL:  (i) APPLY IRRESPECTIVE OF THE NATURE OF THE CAUSE OF ACTION, DEMAND OR ACTION BY YOU INCLUDING, BUT NOT LIMITED TO, NEGLIGENCE, TORT, STRICT LIABILITY, BREACH OF CONTRACT, OR ANY OTHER LEGAL THEORY; (ii) SURVIVE A FUNDAMENTAL BREACH OR BREACHES OR THE FAILURE OF THE ESSENTIAL PURPOSE OF THIS AGREEMENT OR OF ANY REMEDY CONTAINED HEREIN; (iii) NOT APPLY TO THE INDEMNITY OBLIGATIONS SET OUT HEREIN OR MISAPPROPRIATION OR INFRINGEMENT BY EITHER PARTY OF THE OTHER PARTY'S INTELLECTUAL PROPERTY OR A BREACH OF THE SECTIONS OF THIS AGREEMENT ENTITLED: "USE OF THE SOFTWARE" (SECTION 3), "SOFTWARE AND DOCUMENTATION LICENSE" (SECTION 2), "INTELLECTUAL PROPERTY" (SECTION 6), "EXPORT, IMPORT AND USE RESTRICTIONS AND U.S. GOVERNMENT LICENSES" (SECTION 7), AND "CONFIDENTIALITY AND NO REVERSE ENGINEERING" (SECTION 8); AND (iv) APPLY IN THE AGGREGATE, TO ALT-N OR ITS AFFILIATES, THEIR SUCCESSORS, ASSIGNS, AND AUTHORIZED ALT-N DISTRIBUTORS.
(g) IN NO EVENT SHALL ANY OFFICER, DIRECTOR, EMPLOYEE, AGENT, DISTRIBUTOR, SUPPLIER, SERVICE SUPPLIER, INDEPENDENT CONTRACTOR OF ALT-N HAVE ANY LIABILITY ARISING FROM OR RELATED TO THIS AGREEMENT.
(h) YOU ACKNOWLEDGE AND AGREE THAT THE DISCLAIMERS, EXCLUSIONS AND LIMITATIONS SET FORTH IN THIS AGREEMENT CONSTITUTE AN ESSENTIAL ELEMENT OF THE AGREEMENT BETWEEN THE PARTIES AND THAT IN THE ABSENCE OF SUCH DISCLAIMERS, EXCLUSIONS AND LIMITATIONS:  (i) THE FEES AND OTHER TERMS IN THIS AGREEMENT WOULD BE SUBSTANTIALLY DIFFERENT; AND (ii) ALT-N'S ABILITY TO OFFER AND YOUR ABILITY TO LICENSE SOFTWARE UNDER THIS AGREEMENT WOULD BE IMPACTED.

17.  Consent to Collection of Information.
(a) Your installation and/or use of the Software (or any portion thereof) may result in the collection, use and/or disclosure of personal information about You and/or Your Authorized Users by ALT-N and its affiliated companies ("ALT-N Companies") and/or ALT-N's authorized distributor(s) for the Software.  Such personal information may or may not, depending on applicable law include without limitation: a name, address, email address, telephone number, registration profile and User Account information and information about the use of the Software's functionality or software and hardware utilized in conjunction with the Software.  You consent to the collection, use, processing, transmission, and/or disclosure of such information by ALT-N Companies located in a country or territory inside or outside Your jurisdiction (including without limitation the United States and Canada), and You warrant that You have obtained all consents necessary under applicable law from Your Authorized Users to disclose their personal information to ALT-N Companies and for ALT-N Companies to collect, use, process, transmit, and/or disclose such personal information which may also include the use, processing, transmission, and/or disclosure of such information to ALT-N's authorized distributor(s) for the Software for:  (i) the internal use of ALT-N and its affiliated companies, including without limitation:  (A) understanding and meeting Your needs and preferences; (B) developing new and enhancing existing services and product offerings; and (C) managing and developing ALT-N Companies' business and operations including ensuring the technical functioning of products and services; (ii) any purpose related to the billing, registration, provision, maintenance, deactivation and/or Your and/or Your Authorized Users' use of the Software, including fulfilling or enforcing ALT-N's terms and conditions and for follow up regarding order or services fulfillment by ALT-N Companies and/or ALT-N's authorized distributor(s) for the Software during or after the Evaluation Period; (iii) making available to You and/or Your Authorized Users upgrades or updates of the Software, notice of upgrades or updates, Third Party Software and/or related products and/or services; (iv) any purposes permitted or required by any applicable law; and/or (v) any of the other purposes which are set out in ALT-N's then current privacy policy, which may be viewed at http://www.altn.com/Company/Policies/PrivacyPolicy, or to which You otherwise consent.
(b) The collection, use, processing, transmission, and/or disclosure of Your or Your Authorized Users' personal information for the purposes noted above are in accordance with ALT-N's privacy policy.  ALT-N reserves the right to modify its privacy policy from time-to-time in its sole discretion and You should regularly review ALT-N's privacy policy for changes.  You agree to inform all individuals whose personal information You provide to ALT-N that they may have rights to access and correct their personal information under applicable laws and regulations.

18.  Feedback.  You may provide feedback to ALT-N about the Software.  Unless ALT-N otherwise agrees in writing, You hereby agree that ALT-N shall own all feedback, comments, suggestions, ideas, concepts and changes that You provide to ALT-N regarding the Software and all associated intellectual property rights (collectively the "Feedback") and You hereby assign to ALT-N all of Your right, title and interest thereto.  You will not knowingly provide ALT-N any Feedback that is subject to third party intellectual property rights.  You agree to cooperate fully with ALT-N with respect to signing further documents and doing such other acts as are reasonably requested by ALT-N to confirm that ALT-N owns the Feedback and to enable ALT-N to register and/or protect any associated intellectual property rights and/or confidential information.

19.  Assignment and Delegation.  ALT-N may assign this Agreement without notice to You.  You shall not assign this Agreement in whole or in part without the prior written consent of ALT-N (such consent may be withheld or conditioned at ALT-N's discretion) and any assignment without ALT-N's prior written consent shall be null and void and of no effect.  ALT-N may perform all obligations to be performed under this Agreement directly or may have some or all obligations performed by its contractor or subcontractors or its subsidiaries or affiliates.

20.  Notices.  Except as otherwise provided in this Agreement, all notices or other communications hereunder shall be deemed to have been duly given when made in writing and delivered in person, by courier or deposited in the mail, postage prepaid, registered mail or its equivalent, return receipt requested, and addressed to You at the billing address supplied to ALT-N by You, and addressed to ALT-N Technologies, Ltd. at c/o 295 Phillip Street, Waterloo, Ontario, Canada N2L 3W8, Attention: Legal.  In addition to the foregoing, ALT-N may, at its option, give You any notice under this Agreement electronically.  Electronic notice to You shall be deemed to have been duly given when transmitted to an email address furnished by You to ALT-N.

21.  Force Majeure.  Notwithstanding any other provision of this Agreement, neither Party shall be deemed in default of this Agreement for failure to fulfil its obligations when due to causes beyond its reasonable control.  This provision shall not be construed as excusing non-performance of any obligation by either Party to make payment to the other Party under this Agreement.

22.  General.
(a) Third Party Beneficiaries.  ALT-N's affiliates and ALT-N's suppliers and their respective directors, officers and employees thereof are intended third party beneficiaries for the purpose of the Sections of this Agreement entitled, "Limitation of Liability" (Section 16) and "Disclaimer" (Section 15).  Except as otherwise specifically stated in this Section, the provisions herein are for the benefit of the Parties and not for any other person or entity.
(b) Waivers of Default.  No Party is to be deemed to have waived or forfeited any right under this Agreement, whether on the basis of failure, delay or any other legal or equitable doctrine, unless such waiver is made in writing signed by an authorized signatory of the Party against whom the waiver is sought to be enforced.  Waiver of any provision, or any breach of any provision, of this Agreement in one instance shall not constitute a waiver as to any other instance.
(c) Survival.  The terms, conditions and warranties contained in this Agreement that by their sense and context are intended to survive the performance hereof shall so survive the completion of performance, cancellation or termination of this Agreement.
(d) Governing Law and Dispute Resolution.  This Agreement is to be governed by and construed under the laws of the State of Texas, excluding any body of law governing conflicts of law.  The Parties agree that the United Nations Convention on Contracts for the International Sale of Goods is hereby excluded in its entirety from application to this Agreement.  Any disagreement or dispute arising out of or relating to this Agreement, or the breach thereof, which the Parties are unable to resolve after good faith negotiations, shall be submitted first to the upper management level of the Parties.  The Parties, through their upper management level representatives, which if You are an individual, is You, shall meet within thirty (30) days of the dispute being referred to them, and if the Parties are unable to resolve such disagreement or dispute within thirty (30) days of meeting, except to the extent specifically prohibited by applicable law in Your jurisdiction, such disagreement or dispute shall be settled by final and binding arbitration to be conducted in Tarrant County, Texas in accordance with the Commercial Rules of the American Arbitration Association (the "AAA Rules") and shall be heard by one arbitrator appointed in accordance with the AAA Rules and to be mutually agreed to by the Parties within thirty (30) days of the appointment of the arbitrator, failing which a neutral third party shall appoint the arbitrator.  If the provisions of the foregoing are prohibited by law in Your jurisdiction, the arbitration shall be:  (i) held in Your jurisdiction; (ii) settled by arbitration in accordance with the AAA Rules; and (iii) heard by one arbitrator appointed in accordance with the AAA Rules and to be mutually agreed to by the Parties within thirty (30) days of the appointment of the arbitrator, failing which a neutral third party shall appoint the arbitrator.  Each Party shall bear one half of the costs associated with the arbitration proceedings.  No dispute between the Parties, or involving any person but You, may be joined or combined together, without the prior written consent of ALT-N.  Judgment upon the award rendered by the arbitrator may be entered in any court having jurisdiction thereof.  Notwithstanding the foregoing, ALT-N has the right to institute legal or equitable proceedings, including proceedings seeking injunctive relief, in a court of law for claims or disputes regarding:  (i) amounts owed by You to ALT-N in connection with Your acquisition of the Software or any portion thereof, if applicable; and (ii) Your violation or threatened violation of the Sections of this Agreement entitled, "Use of the Software" (Section 3), "Software and Documentation License" (Section 2), "Intellectual Property" (Section 6), "Export, Import and Use Restrictions and U.S. Government Licenses" (Section 7), "Confidentiality and No Reverse Engineering" (Section 8) and "Effect of Termination" (Section 11).  You irrevocably waive any objection on the grounds of venue, forum non-conveniens or any similar grounds and irrevocably consent to service of process by mail or in any other manner permitted by applicable law and irrevocably consent, submit and attorn to the jurisdiction of the courts located in the County of Tarrant, Texas for any such claims arising from or related to this Agreement.  The Parties specifically agree that, in the event that there is a dispute under this Agreement and such dispute is to be resolved in a court of law, such dispute shall not be resolved by jury trial.  The Parties hereby waive all rights to a trial by jury in any matter related to or arising from this Agreement.
(e) Severability.  To the extent any section, clause, provision or sentence or part thereof ("Part") of this Agreement is determined to be illegal, invalid or unenforceable by a competent authority in any jurisdiction, then such determination of that Part will not affect:  (i) the legality, validity or enforceability of the remaining Parts of this Agreement; or (ii) the legality, validity or enforceability of that Part in any other jurisdiction, and that Part will be limited if possible and only thereafter severed, if necessary, to the extent required to render the Agreement valid and enforceable.
(f) Language.  If this Agreement is translated into a language other than English, the English version will prevail to the extent that there is any conflict or discrepancy in meaning between the English version and any translation thereof.  Unless, and only to the extent, prohibited by law in Your jurisdiction, any and all disagreements, disputes, mediation, arbitration or litigation relating to this Agreement shall be conducted in the English language, including, without limitation, any correspondence, discovery, submissions, filings, pleadings, oral pleadings, arguments, oral arguments and orders or judgments.
(g) Inconsistency.  If there is any inconsistency between this Agreement and any software license or end user agreement (other than this Agreement) provided in the packaging or accompanying materials of any portion of the Software, the provisions of this Agreement shall apply to the extent of the inconsistency.  If there is any inconsistency between this Agreement and any software license or end user agreement provided in connection with any upgrades or updates to the Software, the provisions of such other license or end user agreements shall apply to the extent of the inconsistency.
(h) Entire Agreement.  This Agreement (which for the purposes of any Addenda hereto, shall in relation to the subject matter of that Addenda, include the terms of the Addenda), constitute(s) the entire agreement of the Parties with respect to the subject matter hereof and there are no provisions, understandings, communications, representations, warranties, undertakings, collateral agreements or agreements between the Parties relating to the Software other than as set out in this Agreement.  This Agreement supersedes any prior or contemporaneous provisions, understandings, communications, representations, warranties, undertakings, collateral agreements and agreements between the Parties, whether oral or written, with respect to the subject matter hereof, and You acknowledge that You have not relied on any of the foregoing in agreeing to enter into this Agreement.  This Agreement may be amended at any time upon mutual agreement by the Parties.  Except to the extent that ALT-N is expressly precluded by applicable law, ALT-N further reserves the right to make changes to this Agreement on a prospective basis, either to reflect changes in or required by law (including without limitation changes to ensure the enforceability of this Agreement) or changes in business practices, by providing You with reasonable notice of the change either electronically (as contemplated by the Notice provision above) or by posting notice of the change at http://www.altn.com/Company/Policies/LegalNotice/ and You should regularly review that site for changes.  If You continue to use the Software more than sixty (60) days after notice of the change has been given, then You shall be deemed to have accepted this change.  If You have a concern about the change(s) please contact ALT-N at [email protected] within sixty (60) days after notice of the change(s) has been given to inquire as to Your options.
(i) Compliance With Laws.  You will, at Your expense, obtain and maintain all licenses, registrations and approvals required by the government authorities or applicable law in Your jurisdiction for the execution and performance of this Agreement or any related license agreements.  In particular and for the avoidance of doubt, You will comply with all applicable laws and regulations and will obtain any necessary license, registration and approval from competent government authorities for the importation and use of any Software that contains commercial encryption or other security function required by applicable law.  You will provide ALT-N with the assurances and official documents that ALT-N periodically may request to verify Your compliance with this obligation.

IF YOU HAVE ANY QUESTIONS OR CONCERNS ABOUT THE TERMS OF THIS AGREEMENT, PLEASE CONTACT ALT-N C/O [email protected].

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
MDaemon Messaging Server 17.0.2 452 Monday, June 12, 2017 Approved
MDaemon Messaging Server 16.5.2 480 Wednesday, December 21, 2016 Approved

MDaemon 17.5.1 - October 24, 2017

SPECIAL CONSIDERATIONS

[16456] Hosted email options with MDaemon Private Cloud are now available. To learn more, please visit: http://www.altn.com/Products/MDaemon-Private-Cloud/.

[19710] The Dynamic Screening option to freeze accounts after a number of authentication failures is now off by default. It will be turned off when updating to version 17.5.1. If you want to turn it back on, go to Security | Dynamic Screening | Auth Failure Tracking.

CHANGES AND NEW FEATURES
•[19538] LetsEncrypt logging will now include additional details that will make it easier to troubleshoot. The log will include a URL to LetsEncrypt.com that will help explain why challenges fail.
•[19654] Defaults for the Dynamic Screening settings have been changed. Account freeze is off by default and fewer notifications are enabled. If you have the defaults from 17.5.0, please review your settings and adjust them to your liking.
•[19432] In WCIM more info is shown about chat room participants, to help expose/prevent spoofing.
•[18831] LookOut and WorldClient themes - Added a Saved Searches folder to the folder list under Favorites and before Personal folders. This is off by default. To enable it go to Options | Folders and check the box next to Show Saved Search Folders. To search a saved search, click on the folder in the Saved Search list. To open the advanced search dialog and create a new search click the "New Saved Search" folder at the bottom of the Saved Search folder list.
•[19391] WorldClient - Added minimum and maximum password length information when strong passwords are not required.
•[17551] The XMPP server log is now displayed in the MDaemon GUI on the WorldClient tab.
•[19509] MDRA - Updated the MimeTypes.cfg file.
•[19508] WorldClient - Updated the MimeTypes.cfg file.
•[19550] MDaemon no longer reports CRAM-MD5 authentication failures for accounts using AD authentication or non-reversible passwords to the Dynamic Screening system.
•[19607] The number of characters allowed in the Mailing List AD Search Filter setting has been doubled.
•[19719] The Location Screening option to only block authentication for SMTP connections is now enabled by default, and the wording of the option has been clarified.

FIXES
•[19079] fix to MDRA - IMAP Filters do not support multiple conditions
•[19555] LetsEncrypt: fix to arguments being passed to CertUtil not allowing a space in the path and a fix to the error handling not detecting when this occurs.
•[19633] LetsEncrypt: fix to the script trying to start MDaemon Remote Administration when it is disabled.
•[19488] fix to WCIM crash
•[19520] fix to MDaemon may allow active connections to attempt logins after their IPs have been blacklisted by Dynamic Screening
•[19524] fix to minor syntax error in generated Authentication-Results headers
•[18751] fix to WorldClient - Adding calendar entries to public calendar in Lookout theme with the private calendar disabled causes entry to be added to private calendar
•[19528] fix to WorldClient theme - When "Folder" column is included for wide screens the message list is displayed with columns on top of each other
•[19525] fix to WorldClient theme - Cannot reverse the sort order in Contacts, Tasks, Notes, and Documents
•[19502] fix to WorldClient theme - Send/Save buttons in Compose view are ugly in FireFox
•[18930] fix to LookOut and WorldClient themes - Month View - If adding more than 18 events in a day, the 19th event replaces the first event
•[19456] fix to MDRA - Time picker drop down button in Autoresponder screen breaks to the next line
•[19457] fix to MDRA - Domain Manager has wrong Header text
•[19458] fix to MDRA - strings not being translated
•[19461] fix to MDRA - Gateway Manager "Delete" button does not work
•[19548] fix to MDRA - No alert for blank New Black List Entry
•[19549] fix to MDRA - AS Client Wipe buttons not giving alert
•[19551] fix to MDRA - Buttons not working on New Catalog dialog
•[19553] fix to MDRA - Stray closing bracket at top of Copy to Folder dialog
•[19561] fix to WorldClient - Reminder causing WorldClient to crash
•[19564] fix to Content Filter "Add to Windows event log" action does not work properly
•[19563] fix to specific CalDAV request may cause the WorldClient process to terminate
•[19565] fix to a recurring calendar event without "Start" element in the "Recurrence" node of the calendar.mrk crashes the Mac iCal application when synchronizing via CalDAV
•[19557] fix to MDRA - Jump to rule dropdown shows rules before the one you are creating
•[19576] fix to RKEY 5xx error handling incorrect in some cases
•[19497] fix to WorldClient - WC shows message is both signed and encrypted with one key instead of two
•[15286] fix to Content filter PGP screen showing incorrectly parsed key ID
•[19597] fix to possible MDaemon hang during shutdown
•[19605] fix to LookOut and WorldClient themes - Users cannot change passwords when Password Recovery is disabled
•[19617] fix to LookOut and WorldClient themes - error message occurs whenever attempting to attach a document to a calendar event when using http
•[19624] fix to LookOut and WorldClient themes - No search results when searching for non-English characters
•[19623] fix to WorldClient - Compose - attachments section hides when you add CC or BCC fields
•[19515] fix to WorldClient - Missing spaces between recipients in To and CC fields
•[19634] fix to MDRA - Bayesian Learn button is not working
•[19632] fix to MDRA - Mailing List Notification alerts prompts are incorrect
•[19631] fix to MDRA - Unable to click OK on IP Cache alert for Max entries exceeded
•[19630] fix to MDRA - Alert for importing member does not prompt
•[19629] fix to MDRA - Unable to delete members of a Mailing Lists
•[19627] fix to MDRA - Mailing List Headers allows blank email address
•[19626] fix to MDRA - Gateway Manager Creating new Gateway Alerts are mixed up
•[19620] fix to MDRA - Gateway Manager Options appears to turn off even when it doesn't
•[19614] fix to possible ActiveSync server crash when setting out of office message
•[19635] fix to possible ActiveSync server crash during a FolderSync operation
•[19639] fix to non-ASCII country names are corrupted in MDaemon's Location Screening logging
•[19640] fix to LookOut and WorldClient themes - When marking a message as read using a 5-second delay, it will revert to unread
•[19649] fix to LookOut and WorldClient themes - ampersand is encoded as & in the contact list
•[19644] fix to MDRA - Unable to save an entry to the dynamic screening white list or black list
•[19650] fix to LookOut theme - Voice icon does not have tooltip
•[19651] fix to MDRA - "Return to Defaults" button does not work in Server Settings->Ports Screen
•[19613] fix to Bayesian items on the MD queue window right-click menu are enabled when Bayesian is disabled
•[19653] fix to RCPT sometimes accepting odd or incomplete domain form
•[19658] fix to WorldClient - Display Name is received encoded in Reply-To when entered in the Default Reply-To Address
•[19648] fix to CardDAV server may not synchronize all contacts
•[19664] fix to LookOut and WorldClient themes - when using German WC and two Drafts folders exist on the server, one named "Drafts" and one named "Entwürfe", only the German named folder shows up
•[19672] fix to LookOut and WorldClient themes - If the ListRefreshTime is set to 0, the theme will lock up, because it is constantly refreshing the message list upon login
•[19690] fix to WorldClient session cookie check fails if the browser sends cookie data that is too long
•[19687] fix to tentative placeholder events are created for meeting requests in messages that are flagged as spam
•[19696] fix to LookOut theme - Public Documents folder not showing contents when given only Lookup and Read rights
•[19708] fix to disabling Dynamic Screening IP aggregation results in global /0 or /1 IP blocking
•[19697] fix to Dynamic Screening notification emails may have corrupted text for some languages
•[19724] fix to LookOut and WorldClient themes - IE does not handle opening attachments in a way that is easy for users
•[19734] fix to WCIM user rejoins chat room with wrong nickname after XMPP server restart
•[19751] fix to possible MDaemon.exe crash if using bandwidth throttling
•[19765] fix to IMAP server account access issue

MDaemon 17.5.0 - September 26, 2017

SPECIAL CONSIDERATIONS

[18481] BlackBerry Enterprise Server (BES) for MDaemon is not compatible with MDaemon 17.5 or newer. There will not be a new version of BES for MDaemon that is compatible. MDaemon's installer will disable BES if it is detected. Uninstall BES to not be prompted about it. Screens about BES have been removed from the MDaemon UI.

[10327] Added quarantine exclusion lists to allow password-protected files from or to configured senders and recipients. At Security | AntiVirus, enable "Allow password-protected files in exclusion list..." and click the "Configure Exclusions" button. Note that as of SecurityPlus 5.1.0, the ClamAV Plugin may quarantine password-protected files before the main AV engine can scan them. An option is to disable the ClamAV Plugin.

MAJOR NEW FEATURES

[11481] LOCATION SCREENING

A geographically based blocking system has been developed which allows you to block incoming SMTP, POP, IMAP, WorldClient, ActiveSync, AutoDiscovery, XML API, Remote Administration, CalDAV/CardDAV, XMPP, and Minger connections being attempted from unauthorized regions of the world. A new screen has been added at Ctrl+S|Screening|Location Screening to configure this.

When the connecting IP is from a blocked country an entry can be logged in the Dyanmic Screening Log.

[18722] DYNAMIC SCREENING FOR ALL PROTOCOLS/SERVICES

MDaemon's dynamic screening has been expanded to operate with SMTP, POP, IMAP, WorldClient, ActiveSync, AutoDiscovery, XML API, Remote Administration, CalDAV/CardDAV, XMPP, and Minger. Authentication failures are tracked across all of these services and IPs can be blocked for all of them. Settings are in the UI at Security | Dynamic Screening. The log is on the Plug-ins | Dynamic Screen tab. WorldClient's separate Dynamic Screening system has been removed.

[5801] PIM ATTACHMENTS

PIM (calendar, contact, tasks, notes) items now support attachments. Attachments may be added to a PIM item via WorldClient, Outlook Connector, or CalDAV/CardDAV. When scheduling a meeting, any attachments will be sent to the meeting attendees.

LookOut and WorldClient themes - Implemented PIM attachments for Calendars. A new tab was added in the Calendar Edit view that allows users to add file attachments to an event/meeting. As long as a user has read access to an event, the attached files can be downloaded by the user. Only users with edit access can upload or remove attachments from a given event/meeting. Other themes will not be able to edit the attachments, but the attachments will not be lost when an event/meeting is edited.

[15733] PGP KEY-EXCHANGE DURING SMTP

A new checkbox on the MDPGP GUI enables/disables automatic transaction of public keys as part of the SMTP message delivery process. If enabled, MDaemon's SMTP server will honor an SMTP command called RKEY.

When sending an email to a server that supports RKEY MDaemon will offer to transmit the sender's then current and preferred public-key to the other host. That host will respond indicating that it either already has that key and thus no further work need be done ("250 2.7.0 Key already known") or that it needs that key in which case the key is immediately transferred in ASCII armored form right then and there ("354 Enter key, end with CRLF.CRLF") just like an email message. Keys that are expired or revoked are never transmitted. If MDaemon has multiple keys for the sender it will always offer up the key that is currently marked as preferred. If no key is preferred then the first one found is offered. If no valid keys are available then no work is done. Only public-keys that belong to local users are offered.

Public-key transfers take place as part of the SMTP mail session that delivers the message from the user. In order for the public-keys transmitted in this way to be accepted the public-key must arrive along with a message that has been DKIM signed by the domain of the key owner with the i= set to the address of the key owner which also must exactly match the From: header address of which there can be only one. The "key owner" is taken from within the key itself. Also, the message must arrive from a host in the sender's SPF path. Finally, the key owner (or his entire domain via use of wildcards) must be authorized for RKEY by adding an appropriate entry to the MDPGP rules file (instructions are in the rules file for this) indicating that the domain can be trusted for key exchange. All this checking is done automatically for you but you must have DKIM and SPF verification enabled or no work can be done.

The MDPGP log will show the results and details of all keys imported or deleted and the SMTP session log will also track this activity. When it works right your SMTP session logs will show details of key transactions and the MDPGP log file will fill with details.

This process tracks the deletion of existing keys and the selection of new preferred keys and updates all participating servers it sends mail to when these things change.

CHANGES AND NEW FEATURES
•[18877] Added a new option to Ctrl+S|Sender Authentication|SPF Verification which allows you to apply SPF processing to the HELO/EHLO value. This option is enabled by default.
•[19080] The \MDaemon\Data\ folder is now included in the config file backup system.
•[18881] The LetsEncrypt script no longer needs to shut down MDaemon and its associated programs prior to writing content out to INI files. This reduces the potential down time, but you are still required to restart MDaemon in order for the changes to be recognized.
•[18862] The LetsEncrypt script no longer writes out the certificate information to the INI files and restarts MDaemon even if nothing has been changed.
•[19067] As part of the new Dynamic Screening work, the option "Limit simultaneous connections by IP to (0 = no limit)" has been moved from Ctrl+S|Screening| SMTP Screen to F2|Server Settings|Sessions. Also, the SMTP Screening UI has been adjusted. The settings here apply only to SMTP screening and use the Dynamic Screening system so some explanatory text was added.
•[8274] LookOut and WorldClient themes - Added the option to export and import Groups/Distribution Lists from and to a contact folder in WorldClient. The format is WorldClient specific, since Outlook does not support exporting and importing Groups. The format is as follows:
columns - Group GUID, Group Name, GUID, Full Name, Email
Each line that contains either a Group Name or a Group GUID is considered the beginning of a new group. Any GUID, Full Name or Email on that line is considered the first member of the group/list. An Example from Excel follows:

Group GUID Group Name GUID Full Name Email
The Jedis Anakin Skywalker [email protected]
Leia Organa [email protected]
Luke Skywalker [email protected]
Yoda [email protected]
The Siths Darth Maul [email protected]
Darth Vader [email protected]
Emperor Palpatine [email protected]

When importing, the Group GUID is replaced with a freshly generated GUID. If no Group Name is included, the name will be displayed without translation as "ImportedFromCSV_%GUID%", where %GUID% is replaced with the first five characters of the GUID. Leaving the cells to the right of a group name empty will result in the next line being the first member of the group/list. The Email field is required for a member to be added.
•[15783] LookOut and WorldClient themes - Added Voice Recording feature. This feature requires a microphone and is only available in certain browsers. It can be disabled by the admin on a per user basis by adding EnableVoiceRecorder=No to the User.ini. Users are limited to five tracks of five minutes each. Attempting to record more than 5 tracks will result in either the selected track, or the first track, being replaced by the new recording (the user will be prompted). After recording is stopped (either automatically or by the user), the track is converted to an mp3 and uploaded to the server. Users have four options regarding each track: ◦Save to the desktop
◦Save to default WorldClient documents folder
◦Send in an email using a quick dialog that only includes To, CC, BCC, Subject, and a plain/text Message Body ◾Only the To is required. There are canned Subject and Message Body phrases used when no Subject or Message Body is input by the user.

◦Open a new Compose view with the track attached
Users can only act on one track at a time. For example, only one track can be attached to a message. If a user wants to attach multiple tracks to a message, the user will need to save each track to the default documents, and do the attaching from there.
•[13361] LookOut and WorldClient themes - Users can now reorder favorite folders by dragging and dropping them in the favorites list.
•[14784] LookOut and WorldClient themes - New folder management features in the Options | Folders view and in the main folder list view.
In the folder list view (left pane):◦Users can drag and drop to move folders from one parent to another
◦Users can rename folders and give favorites nicknames by clicking on them a second time (shortly after folder selection)
◦Show Folders by Type is now available in the LookOut theme
◦If there is already at least one favorite folder (because favorites are hidden until one is added), users can drag and drop a folder to favorites in order to add it (dragging a folder out of the favorites does nothing).
◦The new folder and rename folder dialogs were added to the LookOut theme
In the Options | Folders view, the folder tree is now collapsible, and the New Folder dialog has been moved to an external window like in the WorldClient theme.
•[8360] Lite, LookOut and WorldClient themes - Added an option to choose the font size for plain text Compose under Options | Compose. The option (Compose Font Size) is always visible in Lite theme, and only visible in LookOut and WorldClient themes when HTML Compose is turned off.
•[8937] WorldClient - The paperclip is no longer displayed in the message list for new messages that only include inline images, unless the "List All Attachments" option is turned on under Options | Personalize. This only affects new messages, so old messages will continue to show the paperclip in the case that only inline images are attached to the message.
•[18526] LookOut and WorldClient themes - Users can now open file attachments in the browser (if the browser supports it) by clicking on the name of the file in the message preview or external message window. To download the attachment, click the download icon next to the name.
•[5494] LookOut and WorldClient themes - Added options to Export a contact in vCard 4.0 format. The "Export vCard" button will download the vCard. The "Send vCard" will open a new Compose window with the vCard(s) attached.
•[18345] LookOut and WorldClient themes - Added a "None" option in the Compose view Signatures select dropdown
•[18397] LookOut and WorldClient themes - Added a setting in Options | Personalize to close the message window when the user deletes the message (external window only), which also preempts the opening of the next message in the list.
•[18312] WorldClient theme - Updated the look of Notes, and added an option to change the color of the note by clicking on the note icon in the top left corner of the note.
•[18728] LookOut and WorldClient themes - Added settings in the Options | Compose view to allow users to choose a signature for replying and forwarding respectively.
•[17255] LookOut and WorldClient themes - Added an option to not include signatures in replies or forwards. Under the same settings for 18728 the user can choose "No Signature" for replies and/or forwards.
•[18179] All Themes - the User cookie is now set to the current value of the User field on login form submission
•[9343] LookOut and WorldClient themes - Added the ability to search for attachment names in the advanced search
•[18479] All Themes - Added indexed data search for message bodies and attachment names
•[12349] All Themes - WorldClient now includes the ability to choose between downloading the 32 bit and 64 bit OC Plugin Installers.
•[9644] Removed MSXML 4 from the installer.
•[18768] Added support for password protected chat rooms to XMPP server.
•[18769] Added support for password-protected chat rooms to WCIM client.
•[18805] WorldClient theme - Simplified the look of the Compose view. Advanced options can be displayed by clicking one button. Save (without closing) option added. Clicking the X in the top right corner will discard a draft, instead of just closing the window. The subject is displayed in the header as the user types it. Moved the Send, Save, and Save and Close options to the footer. The entire attachments section is the drag and drop area. Moved the paragraph justification buttons down to the second level in the HTML editor options.
•[8769] LookOut and WorldClient themes - Added message list context menu options to "Whitelist Sender" and "Blacklist Sender". If clicked, the sender of the selected message(s) will be added to the Whitelist or Blacklist contact folder. These options can be hidden by adding HideEmailAddressHoverMenus=Yes in the Domains.ini under [Default:UserDefaults], or adding the same to a user's User.ini file. When using these options, users can select multiple messages to Whitelist/Blacklist.
•[18696] LookOut and WorldClient themes - Added an option under Options | Compose to allow users to use the Dropbox Preview Link. The default is the Dropbox Direct Link.
•[18209] Turned off EditBISInboxMapping in MDaemon\WorldClient\Domains.ini under [Default:UserDefaults]. This hides the "Push to Blackberry" column in WorldClient's Options | Folders view. This can be enabled for all by changing it back to Yes in the MDaemon\WorldClient\Domains.ini or per user by adding it to the [User] section of a user's User.ini file.
•[16847] Increased the number of custom buttons allowed in WorldClient to eight.
•[18194] WorldClient theme - Date now displayed when printing a calendar in Calendar View mode.
•[18861] A new screen at Setup | Outlook Connector | OC Client Settings | Add-ins lets the admin configure Outlook add-ins for Outlook Connector to disable. Requires Outlook Connector 5.0 or newer. Select a default action, Allow or Disable, which applies to new or unlisted add-ins. Individual add-ins and their actions (whether to Allow, Disable, or use the default action), are displayed in a list box. OC clients will populate the list, or admins can add them from the UI.
•[13179] WorldClient - Added ability for users to view their last ten successful logins on the Options | Security page. This is enabled by default. To disable this option, set DisplayLoginHistory to No in MDaemon\WorldClient\Domains.ini under [Default:UserDefaults].
•[3548] WorldClient - Added Internationalized Domain Name support, so that IDNs will not be displayed in punycode, but instead in UTF-8.
•[18897] LookOut and WorldClient themes - under Options | Compose, the Compose Height and Compose Width options have been removed when HTML Compose is unchecked, because the height and width of the text area in the compose view is auto resized to fit the window.
•[12412] LookOut theme - Added a delete button to the appointment editor that works like the one in the WorldClient theme.
•[18936] Added ability to disable SSL in XMPP Server by adding in \MDaemon\XMPPServer\settings.ini...
[Server]
EnableSSL=No

•[9987] Added support for account IMAP filters with multiple conditions that can be combined using AND or OR. The filter rule creation UI has links that let you edit each part of the rule. Click the "[+]" link to add a condition and the "[x]" link to remove a condition.
•[15967] When MDaemon 17.5+ first starts up, if MDaemon has never been configured to use SSL it will automatically generate a default self-signed certificate and enable SSL for MDaemon, WorldClient, and Remote Administration.
•[19042] POP3, IMAP, and SMTP server authentication changes to make them more consistent, improve logging, and not give as much information about failures to clients. When a username is sent to MDaemon in an encoded form, MDaemon logs it in plain text. When authentication is successful MDaemon logs the account's email address. When authentication fails MDaemon logs the reason but the error message sent to the client is generic. Authentication failures due to invalid username or password are reported to Dynamic Screening, but not those due to the account being frozen, set to do not disturb, expired password, etc.
•[17773] MDRA - Added a "Message Search" page under "Messages and Queues" for Global Admins. This view allows the admin to search a single user's message folders. The maximum number of messages returned is 10,000. After getting a list of messages, the admin can view the message, and related log entries from the Routing, SMTP(in and out), DomainPOP, and MultiPOP logs. Logs will only be displayed if the Statistics Database is enabled under Setup | Server Settings | Logging | Statistics Log.
•[10679] Content Filter - Added ability to block attachments in nested ZIP files up to 5 levels deep.
•[19226] WorldClient theme - Increased the email address input length to 76 characters, which is the maximum length of an MDaemon email address.
•[19212] The files NoTarpit.dat, DynamicScreen.dat, and AuthErrors.dat in the \MDaemon\App directory are no longer used.
•[19078] Added complex Filters to WorldClient. Unsupported themes will not be able to save changes to existing filters.
•[19160] WorldClient theme - Deferred Delivery - Added an alert that tells the user when the message will be sent
•[19316] MDaemon creates registry entries for Windows Error Reporting to save memory dumps if MDaemon.exe, CFengine.exe, WorldClient.exe, WebAdmin.exe, or WCXMPPServer.exe crash. This functionality requires Windows Server 2008/Windows Vista or later. Dump files will be saved to the \MDaemon\Dumps folder. This location may be changed by editing \MDaemon\App\MDaemon.ini and setting [Directories] CrashDumps.
•[17570] Added performance counters for the number of connections refused by IP Screen, Dynamic Screen, Host Screen, and Location Screen.
•[18939] Added performance counters for whether a new version of a product is available and the number of days left in the license for each product.
•[9989] WCIM - Added buddy grouping. The default group is "Buddies".
•[13293] Added an account settings option (enabled by default) to automatically place new meeting requests on the receiving user's default calendar, marked Tentative.
•[19340] MDRA - Added Location Screening view
•[19247] WorldClient - Improved the error message when entering an invalid password on the change password page (when forced to change password by admin).
•[19359] WorldClient - Improved the error message when a user uses an old password.
•[19385] WorldClient and MDRA - Updated CKEditor to version 4.7.1

FIXES
•[18882] fix to LetsEncrypt generating a new certificate each time the script runs.
•[1995] fix to WorldClient - HTML messages with embedded CSS render poorly
•[10334] fix to WorldClient - Message Preview - Malformed messages may have malformed signatures
•[10449] fix to WorldClient - extra space is shown between lines in an HTML message that was composed using Outlook
•[18746] fix to Mobile theme - Going back or using the refresh button in the list view results in a mostly blank page
•[18136] fix to MDPGP GUI showing aliases with macros in dropdown when creating keys for specific users
•[18745] fix to MSA connections not honoring local sources spam filter exemption
•[10273] fix to WorldClient - Alert.sem file not currently working
•[15343] fix to CalDAV: response is not sent to meeting organizer when accepting a meeting request in Thunderbird/Lightning
•[18639] fix to WebDAV log file created with name of ".log" if MDaemon logging is disabled
•[18706] fix to Remote Administration not forcing the recipient of the Weak Password Report to be a local user
•[18739] fix to able to enter non-numbers for max users per domain in Remote Administration
•[18740] fix to Remote Administration does not force entry of a Smart Host when needed in Domain Manager
•[18741] fix to some options not enabled on Remote Administration's Domain Manager | Calendar screen
•[18761] fix to Remote Administration needlessly forcing a policy description in ActiveSync Policy Editor
•[18788] fix to Remote Administration forcing entry of a Dequeue String when it should be optional
•[18791] fix to Remote Administration not checking for a positive integer for time to live in IP Cache
•[18797] fix to Remote Administration missing some of the necessary new mailbox name validation
•[18759] fix to Remote Administration not hiding "WC Documents Folder" as an option when editing Account Templates
•[18821] fix to LookOut and WorldClient themes - Cannot see new category added on the Options | Categories view when adding by right clicking message | Categories
•[18811] fix to LookOut and WorldClient themes - Current folder on server changing if you right click and perform action on a non-selected folder
•[18808] fix to LookOut and WorldClient themes - Applying changes to a signature with more than one font-size results in all fonts changing back to the default
•[18866] fix to WorldClient theme - After a search, if you click the X on the search bar, only the message subjects are displayed
•[18898] fix to Lookout theme Add button is not grayed out when editing a single occurrence of a recurring event
•[18907] fix to encoding issue when AV warning message text is added to HTML messages
•[18908] fix to MDRA - When Free/Busy service for a domain has a password, the field appears blank
•[18911] fix to MDRA - Passwords available in plain text on various pages
•[18933] fix to LookOut and WorldClient themes - WorldClient does not display the email address in the "Recipient unknown" error message
•[19091] fix to WCIM client stripping CR/LF when sending multi-line messages
•[19092] fix to WCIM client not sending status changes to server for 5 minutes
•[19110] fix to remote IP not included in Received headers in some configurations
•[18874] fix to DNSBL lookups on Received header IPs not honoring white list
•[18902] fix to Mail List sending copy to sender errantly in some configurations
•[19138] fix to invalid regular expression in bad passwords file causes problems for the MDaemon GUI and Remote Administration
•[19019] fix to MDRA - Content Filter shows "Process Exit Code" instead of "SpamAssasin Score" popup when selecting a SpamAssasin Score entry
•[19131] fix to MDRA - Subfolders are not always created correctly
•[19175] fix to WorldClient - When composing a signature, then when using an underline, it is not saved
•[19188] fix to LookOut and WorldClient themes - Deferred Delivery sets year to 1601 when sent from the Spell-Check view
•[18820] Fix to LetsEncrypt script not restarting MDaemon when WorldClient or MDaemon Remote Administration are running under IIS and the WebScripting tools are not installed
•[18702] fix to various problems with the Group Editor in Remote Administration
•[18800] fix to JavaScript error on ActiveSync Clients page in Remote Administration
•[18701] fix to various excessive whitespace on certain popup windows in Remote Administration
•[18712] fix to some text not being translated on Remote Administration's DomainPOP page, User's Forwarding page, and Dropbox page
•[18724] fix to incorrect prompt in Content Filter "Event Log" actions in Remote Administration
•[18792] fix to IP Shielding screen in Remote Administration not forcing entry of an IP address
•[18819] fix to Event Logging screen in Remote Administration not disabling some options when it should
•[17689] fix to From Header Modification not always handling parsing correctly
•[19114] fix Mobile theme - Calendar months and days are displayed in English when any other language is selected
•[19300] WCIM client - fix to account not added to drop list on 'Add Contact' screen
•[19149] WCIM client - fix to "Invisible" status change not working. It will act as "Do not disturb" to other XMPP client.
•[19302] fix to MDRA - Cannot edit or create new domain
•[19303] fix to WorldClient theme - not able to sort messages by ascending date when changing the sort order on the Options | Personalize page
•[19304] fix to WorldClient - error message popup goes away too quickly before it can be read
•[18693] fix to LookOut and WorldClient themes - Unable to send faxes with no attachments
•[19265] fix to IPF.IMAP type folders being created when moving folders from an IMAP PST to an Outlook Connector account
•[19351] fix to LookOut theme - when switching messages the scroll bar is not reset in the message preview
•[19367] fix to Possible memory leak in the Thread Pool if Message Log Parser fails
•[18844] fix to WCIM - if user changes status with multiple XMPP clients, WCIM should only report offline if all instances go offline
•[19113] fix to Mobile theme - First Day of week setting is not applied to the calendar
•[19151] fix to WCIM - when global status is set to "Online" WCIM should log account back in
•[19002] fix to contact notes changed on an ActiveSync client are not saved to the server
•[18927] fix to ACL entry in an account's root Hiwater.mrk is not added to AclShLookup.dat during the ACL cleanup event
•[19173] fix to a single instance of a recurring appointment deleted using an ActiveSync client is not deleted on the server
•[19321] fix to messages sent using ActiveSync may display incorrect date in ActiveSync clients
•[18932] fix to Sent Items copy of message sent using ActiveSync is unread
•[19452] fix to MD GUI crashes immediately when selecting the Use Small Display Font option

MDaemon is a registered trademark of Alt-N Technologies, Ltd.

Copyright ©1996-2017 Alt-N Technologies, Ltd.


This package has no dependencies.

Discussion for the MDaemon Messaging Server Package

Ground Rules:

  • This discussion is only about MDaemon Messaging Server and the MDaemon Messaging Server package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or MDaemon Messaging Server, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus