How to configure the Exchange 2007 POP3 service

June 18, 2007 at 8:22 am | In Technology |

This one had me stumped today, so here it is for the benefit of others. (Solution found on MSDN forums)

There is no reason being scared about configuring the secure POP3 service on port 995 for Exchange 2007.

  1. Open the Exchange 2007 Management Shell (PowerShell)
  2. Set MSExchangePOP3 service to automatic (not enabled by default)
    Set-service msExchangePOP3 -startuptype automatic
  3. Configure IP Address and Port for POP3. To use POP3 with SSL, run the following command:
    Set-PopSettings -SSLBindings IPaddress:Port
  4. Configure POP3 Authentication. If you want to use TLS encryption before authentication (enabled by default), run the following command:
    Set-PoPSettings -LoginType SecureLogin
  5. Enable POP3 Protocol for the User Mailbox (enabled by default)
    Set-CasMailbox MailboxName -Popenabled:$true
    To find out the current setting, run the following command:
    Get-CasMailbox MailboxName
  6. Configure the SMTP Receive Connector on the Exchange Server to Allow Anonymous in order to send Email using the following command:
    Set-ReceiveConnector “Servername\default Servername” -PermissionGroups
    “ExchangeServers,ExchangeUsers,ExchangeLegacyServers,AnonymousUsers”
  7. Restart the Microsoft Exchange POP3 Service to apply the settings
    Restart-service MSExchangePOP3

Hope this helps somebody out there.

4 Comments

  1. Thank you very much of your posting. It helps me to configure my email server.

    Comment by Dhani — July 6, 2007 #

  2. Thx for that, Cant beleive microsoft changed a product so radically, almost up to a point of being a completely different product!

    Comment by Tony — July 9, 2007 #

  3. We have been trying to get POP enabled on 2007 for ages, tried these instructions and still no joy. We are trying to connect from an App called Spiceworks and get an ‘unknown protocol’ error. We know that POP is enabled on the user as we can check with Get-CasMailbox. Is the version of POP on 2007 different from other versions - ie have they created another ’standard’?

    Comment by Simon Bryan — January 21, 2008 #

  4. aweasome !

    Comment by Seth — March 29, 2008 #

Sorry, the comment form is closed at this time.

Blog at WordPress.com. | Theme: Pool by Borja Fernandez.
Entries and comments feeds.