A Users meetings gets automatically sent to shared mailbox

Rebecka Fors 20 Reputation points
2024-03-28T09:29:26.05+00:00

Hi,

We have an issue in our company that every meeting for a user gets automatically forwarded to a shared mailbox that the user used to have access to.

All of the users privileges have been revoked for the shared mailbox (both in AD, on-prem and in exchange admin), there are no set rules or delegations on either server side or client side that should cause this behaviour and I've even tried suspending the users account for a short period of time. Nothing has helped.

Could there somehow be a hidden rule somewhere that causes such a behaviour? And how do we find it?

Sorry for any grammatical errors, English is not my native language and our Office products are in Swedish, so if anything is amiss I apologize.

Office
Office
A suite of Microsoft productivity software that supports common business tasks, including word processing, email, presentations, and data management and analysis.
1,303 questions
Outlook
Outlook
A family of Microsoft email and calendar products.
2,959 questions
Outlook Management
Outlook Management
Outlook: A family of Microsoft email and calendar products.Management: The act or process of organizing, handling, directing or controlling something.
4,887 questions
Office Management
Office Management
Office: A suite of Microsoft productivity software that supports common business tasks, including word processing, email, presentations, and data management and analysis.Management: The act or process of organizing, handling, directing or controlling something.
2,000 questions
{count} votes

Accepted answer
  1. Faery Fu-MSFT 16,836 Reputation points Microsoft Vendor
    2024-04-19T06:37:29.02+00:00

    Hi @Rebecka Fors ,

    Thanks for your feedback above which shared more information and glad to know that your issue is resolved now! Since our forum has the policy that The question author cannot accept their own answer. They can only accept answers by others, and according to the scenario introduced here: Answering your own questions on Microsoft Q&A

    I would make a brief summary of this post so that other forum members could easily find useful information here:

    [Activating lagged copies - Summary]

    Issue Symptom:

    Every meeting for a user gets automatically forwarded to a shared mailbox that the user used to have access to.

    Solution:

    Check for hidden inbox rules with the Get-InboxRule command:

    C:\> Get-InboxRule -Mailbox userg@domain.com -IncludeHidden
    

    Reference Link:

    https://supertekboy.com/2021/07/21/former-calendar-delegate-still-receives-meeting-notifications/(Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.)


    You could "Accept Answer" for this summary to close this thread, and your action would be helpful to other users who encounter the same issue and read this thread. Thanks for your understanding!

    1 person found this answer helpful.
    0 comments No comments

4 additional answers

Sort by: Most helpful
  1. Vasil Michev 95,341 Reputation points MVP
    2024-03-28T18:23:41.24+00:00

    Hi Rebecka, does this only happen for meeting requests? If so, the most likely culprit is the ResourceDelegate setting on the mailbox, which you can check via:

    Get-CalendarProcessing user@domain.com | select ResourceDelegates
    
    

    If it also happens for regular emails, it's likely some other form of forwarding. Have you made sure that all server-side components are covered, including forwardingAddress, forwardingSMTPAddress, transport rules?

    0 comments No comments

  2. Faery Fu-MSFT 16,836 Reputation points Microsoft Vendor
    2024-03-29T08:06:35.73+00:00

    Hi @Rebecka Fors ,

    Agree with @Vasil Michev , did you try to check by the above command, apart from that you can also consider other possible reasons:

    1. Mail Flow Rules Set by Admin: Check if any mail flow rules have been set up by your administrator. Sometimes, these rules can inadvertently cause automatic forwarding of meeting invitations or events. You can contact your admin to verify and review the rules in the Exchange admin center.
    2. To further figure out the problem, please contact admin to run a message trace for the specific mail flows.

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


  3. Rebecka Fors 20 Reputation points
    2024-04-11T13:51:31.46+00:00

    Hi!

    We solved the issue with the following powershell script. This told us our user had a hidden rule and we could delete the identity with Remove-InboxRule

    C:\> Get-InboxRule -Mailbox userg@domain.com -IncludeHidden
    
    0 comments No comments

  4. Rebecka Fors 20 Reputation points
    2024-04-11T13:53:54.5033333+00:00

    Hi!

    We solved the issue with the following powershell script. This told us our user had a hidden rule and we could delete the identity with Remove-InboxRule

    C:\> Get-InboxRule -Mailbox userg@domain.com -IncludeHidden