Skip to main content

Exchange server Port Details


All email accounts we host, regardless of the domain name, will use the following server settings. To use a secure connection, use the settings marked "SSL."
Incoming Server Type:
Server Name:
Port:
POP3
pop.emailsrvr.com
110
IMAP
imap.emailsrvr.com
143
POP3 with SSL
secure.emailsrvr.com
995
IMAP with SSL
secure.emailsrvr.com
993
Outgoing Server Type:
Server Name:
Port:
SMTP
smtp.emailsrvr.com
25, 587,
8025, or 2525
SMTP with SSL
secure.emailsrvr.com
465
Outgoing servers require SMTP authentication. Microsoft Outlook users will need to manually enable this feature. 

Comments

Popular posts from this blog

Installing Nagios 4 on Ubuntu 14 04 LTS

Create a list of local administrators with PowerShell

1.        Create folder :    C:\Temp 2.        Save a text file with the name servers.txt and add server names 3.        Create a .PS1 file with the name “ Get-LocalGroupMembers . ps1 ”with below PowerShell code: **********************************************************     [ CmdletBinding () ] Param (     [ Parameter (    ValueFromPipeline = $true ,                 ValueFromPipelineByPropertyName = $true                 ) ]     [ string []]     $ComputerName = $env:ComputerName ,     [ Parameter () ]     [ string ]     $LocalGroupName = "Administrators" ,   ...