Link to home
Start Free TrialLog in
Avatar of cmatchett
cmatchettFlag for United Kingdom of Great Britain and Northern Ireland

asked on

exchange 2010 sending to external recipient

Hi,

If i have a company called company1 who has a person who works for them that has an e-mail address of 'person@company1.com' and all e-mail sent to that email address has to go to 'person@gmail.com'

If i create a contact, the e-mail address policy will apply and then i can put 'person@gmail.com' as the external address?  Does that mean that any e-mail sent to 'person@company1.com' will go to 'person@gmail.com'.

I could alternatively create a user account and set-up forwarding.  The contact option would be preferred.

This person has 'person@company1.com' on all of their business cards
Avatar of Arpit Bajpai
Arpit Bajpai
Flag of India image

Hi,
I think the best way to do this is use powershell script.

Try this
Connect to Exchange via PowerShell
Launch a PowerShell window... then run these commands:
$LiveCred = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection
Import-PSSession $Session
Add the SendAs permission to the list
Add-RecipientPermission -Identity user@example.com -Trustee admin@example.com -AccessRights SendAs
Verify the permission
Get-RecipientPermission -Identity user@example.com | Select Trustee, AccessControlType, AccessRights
Make the distribution list visible in GAL
This step was not mentioned in any of the information I found online, but if the list is hidden, the user will continue to get a permission required email each time they try.
ASKER CERTIFIED SOLUTION
Avatar of Jamie McKillop
Jamie McKillop
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial