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?
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?
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.