Skip to content

Commit

Permalink
Merge pull request KelvinTegelaar#1861 from kris6673/UserEmailSetting…
Browse files Browse the repository at this point in the history
…s-recipientTypeDetails

Add mailbox type to Email settings pane under list user
  • Loading branch information
KelvinTegelaar committed Nov 13, 2023
2 parents 72895e0 + af2ba64 commit 89a4c3c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/views/identity/administration/UserEmailSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ const formatter = (cell, warning = false, reverse = false, colourless = false) =
export default function UserEmailSettings({ userId, tenantDomain, className = null }) {
const { data: details, isFetching, error } = useListMailboxDetailsQuery({ userId, tenantDomain })
const content = [
{
heading: 'Mailbox Type',
body: details?.RecipientTypeDetails,
},
{
heading: 'User Not Restricted',
body: formatter(details?.BlockedForSpam, false, true),
Expand Down

0 comments on commit 89a4c3c

Please sign in to comment.