Link to home
Start Free TrialLog in
Avatar of GSLElectric
GSLElectric

asked on

Allow users to forward their email account from Outlook Web Access

We have many users that don't access their company issued email that often.  We want to give them the option to forward their email to a personal email account.  I can find in OWA where I can create a rule to allow them to do so.  However when I test it the emails don't get sent.  Is there  a setting that I need to change on the back end to allow them to forward their email by setting up a rule in OWA?
Avatar of suriyaehnop
suriyaehnop
Flag of Malaysia image

You can set forwarding at mailbox server. Just create a mailcontact that reflect your user's personal email address. From Mailbox server, find the user and clik on Mail flow tab.
Avatar of GSLElectric
GSLElectric

ASKER

I have over 350 users and I don't want to manage it for them.  I want them to have to login in to their account setup the rule and put in the forwarding email address.  That way when/if they change their personal email address they also need to make the modifications.
ASKER CERTIFIED SOLUTION
Avatar of Leon Fester
Leon Fester
Flag of South Africa 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
OOPS reposting info...my bad
Are you running on Exchange 2007 or later. If yes, you can use the Exchange Management PowerShel to create a mail forwarding for 350 users. Here is what I did last time:

$Mbxs = Import-Csv C:\PS\SetForwarding_11.csv
foreach ($mbx in $Mbxs){

# To create a mail contact
New-MailContact -Name ('SK'+'-'+$mbx.alias) -FirstName $mbx.firstname -LastName $mbx.lastname `
-ExternalEmailAddress $mbx.contact -OrganizationalUnit $mbx.OU

do{
$Contact = Get-MailContact -Identity ('SK'+'-'+$mbx.alias) -ErrorAction SilentlyContinue
}While ($contact -eq $null)

# Set Mail forwarding with a keep copy option.
Set-MailContact -Identity ('SK'+'-'+$mbx.alias) -HiddenFromAddressListsEnabled:$true
Set-Mailbox -Identity $mbx.alias -ForwardingAddress $Mbx.Contact -DeliverToMailboxAndForward:$true



}

Open in new window

$Mbxs = Import-Csv C:\PS\SetForwarding.csv
foreach ($mbx in $Mbxs){
New-MailContact -Name ('SK'+'-'+$mbx.alias) -FirstName $mbx.firstname -LastName $mbx.lastname `
-ExternalEmailAddress $mbx.contact -OrganizationalUnit $mbx.OU

do{
$Contact = Get-MailContact -Identity ('SK'+'-'+$mbx.alias) -ErrorAction SilentlyContinue
}While ($contact -eq $null)

Set-MailContact -Identity ('SK'+'-'+$mbx.alias) -HiddenFromAddressListsEnabled:$true
Set-Mailbox -Identity $mbx.alias -ForwardingAddress $Mbx.Contact -DeliverToMailboxAndForward:$true



}

Open in new window

SetForwarding-11.csv