Share via

ExchangeServer load Email

TK_Sun 1 Reputation point
2021-11-01T03:06:53.667+00:00

How to use C#Progarming to load Email which on ExchangeServer2019

ExchangeServer sign in Enterprise email Administrator Account
Now I want to read Subaccount‘s Email without Subaccount‘s password

Waitting for your answers

Exchange | Exchange Server | Development
Exchange | Exchange Server | Management
Exchange | Exchange Server | Management

The administration and maintenance of Microsoft Exchange Server to ensure secure, reliable, and efficient email and collaboration services across an organization.


1 answer

Sort by: Most helpful
  1. Glen Scales 4,446 Reputation points
    2021-11-02T22:38:13.607+00:00

    >ExchangeServer sign in Enterprise email Administrator Account

    Best practice is to never use Administrator accounts in any application, in Exchange especially it won't work because an Admin account (or any user) only has explicit rights to their own mailbox to access another users mailbox permissions need be granted explicitly either via Add-MailboxPermission or Add-MailboxFolderPermission (regardless of your administration rights)

    The other option if you need to access many mailboxes within a particular Exchange Organization is to use Impersonation in EWS see https://learn.microsoft.com/en-us/exchange/client-developer/exchange-web-services/impersonation-and-ews-in-exchange again for this don't use your administer account create an application specific account and then grant that impersonation rights.

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.