Link to home
Start Free TrialLog in
Avatar of hbsr
hbsrFlag for United States of America

asked on

Exchange "send as" Permission

Exchange 2007 SP1 - Outlook 2007

User B needs to "send as" User A.  I ran the following on User A's mailbox:

add-adpermission "User A" -user "domain\User B" -extendedrights "send as"


When I try to send a message from User B's mailbox as user A, the message is sent "On behalf of" and not "as" User A.

Do I need to deny "send on behalf of" for User B on User A's mailbox?  If so, how?

Thanks
Avatar of Britt Thompson
Britt Thompson
Flag of United States of America image

The only way you can send it without it being sent "on behalf of" is to create an additional profile and mount that mailbox directly in Outlook. You can have multiple Exchange accounts in a single profile in Outlook 2010 but not Outlook 2007.
Avatar of Jon Brelie
I believe what you want is:
Add-ADPermission -Identity 'CN=User Name A,OU=path,OU=path,DC=domain,DC=com' -User 'domain\UserB' -ExtendedRights 'Send-as'

That *should* work without the 'send on behalf' bit.
Avatar of hbsr

ASKER

This is straight from TechNet

 

To use the Exchange Management Shell to grant a user the Send As permission for another user's mailbox

    *

      Run the following command.

      Add-ADPermission "Mailbox" -User "Domain\User" -Extendedrights "Send As"

http://technet.microsoft.com/en-us/library/aa998291%28EXCHG.80%29.aspx

There has to be a way to do this without creating additional profiles.  I can send emails as our helpdesk mailbox without adding another profile.

Yes, but that didn't work for you, did it?

I cut and pasted (and obfuscated) the command above from a successful test that I just performed on our 2007 system.
I believe you also have to give userB "send as" rights separately in the permission settings for userA's AD account in order for it to work without the "On behalf of" appearing on the final message.
Avatar of hbsr

ASKER

Enphyniti:  I did as you recommended and this is what I received:

WARNING: Appropriate ACE is already present on object "CN=User,OU=,OU=,OU=,OU=,DC=,DC=l" for account "Domain\User".

If I go through "Exchange Console - Mailbox -User A - Properties - Mail Flow Settings - Delivery Optons", Send on Behalf of permissions are shown there.  If I remove User B from this permission, grant user B "Send as" access via Shell as stated above, I get the following error:

"You do not have the permission to send the message on behalf of the specified user"
ASKER CERTIFIED SOLUTION
Avatar of hbsr
hbsr
Flag of United States of America 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
Avatar of hbsr

ASKER

Resolved myself
Avatar of Ashlee833
Ashlee833

The end solution worked for me.  Thank you!