Axigen activesync in axigen mail server demo mode

i thinked activesync was available in the demo version of axigen mail server?
i cant see wich addons are active

Hello,

The trial version has ActiveSync add-on included and to use it you will have to check the “Enable ActiveSync” option available in Webadmin -> Services -> Mobility & Sync.

You may use Webadmin -> Global Settings -> License Information to verify the add-ons available on your license key.

Regards,
Florin

from the license info on my server:
License Details
You are running a TRIAL Version of AXIGEN Mail Server.
i run a axigen 10.0 or something
not the newest one

Hello,

Please find below a dirty simple way to get the a status of ActiveSync from your server:

curl -v -k -u <email-address>:<password> -L 'https://<server-hostname_OR_IP>/Microsoft-Server-ActiveSync' --request OPTIONS 2>&1 | grep '^< HTTP\|^< MS-ASP\|< Server'

Normally you should get:
< HTTP/1.1 200 OK < Server: Axigen-ActiveSync < MS-ASProtocolVersions: 2.0,2.1,2.5,12.0,12.1 < MS-ASProtocolCommands: Sync,SendMail,SmartForward,SmartReply,GetAttachment,GetHierarchy,FolderSync,FolderCreate,FolderDelete,FolderUpdate,MoveItems,GetItemEstimate,MeetingResponse,Search,ResolveRecipients,Settings,Ping,ItemOperations,Provision

When ActiveSync is disabled (from WebAdmin > Services > Mobility & Sync) or wrong User / Password you’ll get:
< HTTP/1.1 401 Unauthorized

When the login credentials are good but the account is not allowed to use ActiveSync you’ll get:
< HTTP/1.1 403 Forbidden

As usual, maximizing the Log Level to Protocol Communication for WebMail service will allow to have more details into Axigen log file (usual saved in /var/opt/axigen/log/everything.txt).

HTH,
Ioan