Exchange 2007 POP3 Client attivazione via PowerShell
Powershell è un importante strumento di configurazione e spesso più rapido dell’interfaccia grafica, ecco due righe su come abilitare il pop3 via powershell per Exchange 2007
1. Impostare MSExchangePOP3 in avvio automatico
Set-service msExchangePOP3 -startuptype automatic
2. Configurare ip e porta per POP3
2.1. per usare POP3 con SSL:
Set-PopSettings -SSLBindings: IPaddress:Port
2.2. Per usare POP3 senza crifratura o TLS:
Set-PopSettings -UnencryptedOrTLSBindings IPaddress:Port
3. Attivare autenticazione POP3 – POP3 (110) /POP3 SSL (995)
3.1. Senza crittografia ne Basic authentication:
Set-PopSettings -LoginType PlainTextLogin
3.2. con TLS, e Basic authentication:
Set-PopSettings -LoginType PlainTextAuthentication
3.3. TLS:
Set-PoPSettings -LoginType SecureLogin
4. Attivare POP3
Set-CasMailbox MailboxName -Popenabled:$true
5. Configurazione SMTP Receive Connector su Exchange Server per consentire l’invio:
Set-ReceiveConnector “Servername\default Servername” -PermissionGroups “ExchangeServers,ExchangeUsers,ExchangeLegacyServers,AnonymousUsers”
6.Riavviare Microsoft Exchange POP3 Service
Restart-service MSExchangepop3