Ssl – How to enable Exchange 2010 for IMAP (SSL and non SSL)

exchange-2010imapssl

I need to permit SSL and non non-ssl clients to use IMAP.

What is the command to enable IMAP in SSL and non-SSL mode?

Best Answer

Not sure if this does it for you, but (first two are just in case):

Set-service msExchangeIMAP4 -startuptype automatic
Start-service msExchangeIMAP4
Set-CASMailbox -Identity "John Smith" -IMAPEnabled $true

Then one of the following depending on how secure you want it:

Set-ImapSettings -LoginType PlainTextLogin
Set-ImapSettings -LoginType PlainTextAuthentication
Set-ImapSettings -LoginType SecureLogin

You can also set security in the Management Console here: Server Configuration>Client Access>POP3 and IMAP>Properties>Authentication.