0

Is it possible and how do i go about doing this:

I have a fresh install of Small business server 2008 (nothing setup yet) What i would like to do is set up sbs to use a remote hosted exchange server instead of using the local exchange server. Or is there a way to sync the two exchange servers together so that way when i add a new user the hosted exchange server is updated with that user as well?

Bbbh
  • 179
  • 1
  • 10

2 Answers2

0

I think what you are looking for is the POP3 connector. There may be other ways of doing it, but this seems like the path of least resistance.

Take a look here: http://technet.microsoft.com/en-us/library/cc546479(WS.10).aspx

You can use the Windows SBS 2008 POP3 Connector to retrieve e-mail from external POP3 mailboxes and deliver it to the appropriate Exchange Server users. For example, you can retrieve e-mail from the POP3 mailbox for Chris@adatum.com (where adatum.com is the domain name of Chris' Internet service provider), and then deliver it to your Exchange e-mail mailbox for Chris@contoso.com.

unhappyCrackers1
  • 977
  • 1
  • 6
  • 18
  • I did look into this after you mentioned it. The pop3 connector takes away functionality from the hosted exchange server and makes it just a basic mail server. i guess there is no way to do this then. – Bbbh Dec 02 '10 at 02:48
0

If goal is to just use hosted Exchange instead of the SBS Exchange then it can be done by uninstalling Exchange on the SBS and then changing your MX records to point to the hosted Exchange servers. I'm not aware of any sync from AD to an outside Exchange provider, mainly because it would have to be supported by the hosted Exchange provider also.

Exchange installs by default on SBS 08, it cannot be de-selected in the SBS install but can be uninstalled afterward.

The MS method below doesn't quite work, but the following steps get around the problems.

http://support.microsoft.com/kb/927464

  1. Remove the all mailboxes by Disabling them: In the Exchange Mgmt Console, select the/any mailboxes, right click and select disable. (Note: Deleting Mailboxes will delete the user, not helpful unless the server is brand new w/out any users.)

  2. Remove the Public Folder replicas:

http://msexchangeteam.com/archive/2007/07/09/445967.aspx

These steps aren't perfect but you can find them and manually delete instead of moving.

If that fails then use this PS script to remove them:

Open Exchange 2007 management shell (CMD line) and type following commands:

Get-PublicFolder -server xxxxx "\" -Recurse -ResultSize:Unlimited | Remove-PublicFolder -server xxxxx
-Recurse -ErrorAction:SilentlyContinue

Get-PublicFolder -Server xxxxx "\Non_Ipm_Subtree" -Recurse -ResultSize:Unlimited | Remove-PublicFolder
-Server xxxxx -Recurse -ErrorAction:SilentlyContinue

Replace xxxxx with your Exchange server name in the above command.
  1. Delete the Public Folder Store using above link.

  2. Delete the Send & Receive Connectors in the Exchange Console.

    4.5 If the next step fails with an error "Public folder database contains an address book" then in the Exchange Console expand the organization configuration, and Remove the default Address Book from the offline address book tab.

  3. Setup the reg key so the Mgmt Console can be uninstalled:

http://technet.microsoft.com/en-us/library/dd728003%28WS.10%29.aspx

  1. Uninstall Exchange from Control Panel, Programs, reboot.

  2. Delete the reg key so SBS/AD doesn't think Exchange is still installed, use link above for instructions.

  3. Remove OWA website from IIS.

  4. Remove the Exchange Administrators Group from AD.

  5. Configure the MX records for the Exchange host.

  6. Consider adding an Autodiscover.domain.com in your DNS, it can simplify Outlook configuration.

Ed Fries
  • 1,619
  • 2
  • 12
  • 14
  • It worked. And after thinking its probibly not a good idea to sync a hosted echange service with my AD. Besides if i add someone new to the AD it will only two seconds to login to the hosted exchange and add them there too. – Bbbh Dec 04 '10 at 16:36