I'm wanting to start using the User Portals and therefore started up the Active Directory (SBS 2008 w/ Exchange 2007) syncing within Astaro (ASG 7.402). I setup everything and began pulling over AD users. The "real name" and "additional email addresses" did not transport over.
I could live without the real name, however some of the users have extensive additional emails and I found that if i manually re-add, the next sync clears them again.
Ideally the Astaro would pull the main email and their additional ones from their AD object, thus their User portal contents cover all of their email. Any help is appreciated.
*Edit* I just found some VBScript that shows the current users full email settings
Code:
Set wshNetwork = CreateObject("WScript.Network")
Set ADSysInfo = CreateObject("ADSystemInfo")
Set CurrentUser = GetObject("LDAP://" & ADSysInfo.UserName)
strMail = Join(CurrentUser.proxyAddresses)
MsgBox strMail , 0, wshNetwork.UserName & "'s email addresses"