4

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?

makerofthings7
  • 8,911
  • 34
  • 121
  • 197

1 Answers1

5

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.

Ben Pilbrow
  • 12,041
  • 5
  • 36
  • 57
KCotreau
  • 3,381
  • 3
  • 20
  • 24