Forum Discussion
Exchange 2016 - Problem adding users to Send As or Send on Behalf
I have encountered this same issue
FIX : (check your config files in the Pickers dir)
I have a hybrid environment and found that "RemoteUserMailbox" was missing in the string for searches in SendAsPicker.aspx and also SendOnBehalfOfPicker.aspx
\Program Files\Microsoft\Exchange Server\V15\ClientAccess\ecp\Pickers\
lewischris123 Can you maybe show a sample of what you changed for this to work,
- thekmummJan 13, 2023Copper Contributor
Hi I don't know if you figure this out but I thought I would add the solution that the previous user mentioned. Modify this line in the two files mentioned in lewischris123 post
<ecp:StaticBinding Name="AllowedRecipients" TargetType="System.String" DefaultValue="UserMailbox,LinkedMailbox,LegacyMailbox,MailUser,MailUniversalDistributionGroup,MailUniversalSecurityGroup" />
add the RemoteUserMailbox to make the webui include these hybrid/remote users in it's search.
<ecp:StaticBinding Name="AllowedRecipients" TargetType="System.String" DefaultValue="UserMailbox,LinkedMailbox,LegacyMailbox,MailUser,MailUniversalDistributionGroup,MailUniversalSecurityGroup,RemoteUserMailbox" />
- GaryLosAngelesDec 08, 2023Copper ContributorThank you for the additional details, made the fix much easier!