mirror of
https://github.com/KelvinTegelaar/CIPP.git
synced 2026-04-25 08:16:01 +03:00
[GH-ISSUE #1959] [Feature Request]: Manage Tenant Contacts #1010
Labels
No labels
API
Feature
NotABug
NotABug
Planned
Sponsor Priority
Sponsor Priority
bug
documentation
duplicate
enhancement
needs more info
no-activity
no-priority
not-assigned
pull-request
react-conversion
react-conversion
roadmap
security
stale
unconfirmed-by-user
unconfirmed-by-user
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/CIPP#1010
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @JeremyMcM on GitHub (Dec 22, 2023).
Original GitHub issue: https://github.com/KelvinTegelaar/CIPP/issues/1959
Description of the new feature - must be an in-depth explanation of the feature you want, reasoning why, and the added benefits for MSPs as a whole.
Management of Tenant Contacts under [IDENTITY MANAGEMENT > Administration > Contacts] -- or some such location.
Many clients use Tenant Contacts, along with Distribution Lists to communicate with internal users and external partners. The [IDENTITY MANAGEMENT > Administration > Groups > edit] page allows adding an existing contact to the group, but nowhere in CIPP is there a way to create or edit existing contacts.
Having the ability to add and edit these contacts will further reduce the need to log into the Microsoft 365 admin center.
Thanks!
PowerShell commands you would normally use to achieve above request
To add a new contact.
New-MailContact -Name "Luke Skywalker (Jedi Knight)" -ExternalEmailAddress "master_yoda_taught_me@theforce.com" -DisplayName "Luke Skywalker" -FirstName "Luke" -LastName "Skywalker"
https://learn.microsoft.com/en-us/powershell/module/exchange/new-mailcontact?view=exchange-ps
To update existing contact.
Set-MailContact -Identity "Luke Skywalker (Jedi Knight)" -ExternalEmailAddress "who_is_my_daddy@theforce.com"
https://learn.microsoft.com/en-us/powershell/module/exchange/set-mailcontact?view=exchange-ps
@github-actions[bot] commented on GitHub (Dec 31, 2023):
This issue is stale because it has been open 10 days with no activity. We will close this issue soon. If you want this feature implemented you can contribute it. See: https://docs.cipp.app/dev-documentation/contributing-to-the-code . Please notify the team if you are working on this yourself.
@JeremyMcM commented on GitHub (Jan 3, 2024):
I'm not qualified to work on it I suspect... I've never done anything but stand-alone PowerShell. (Where could I learn how to incorporate into a project like this? Is it a "If you have to ask, you can't hope to help" thing?)
Thanks!
@KelvinTegelaar commented on GitHub (Jan 8, 2024):
If you write the PowerShell thats needed it already covers a lot of the requirements. If you really want to help all the way our dev guide is here: https://docs.cipp.app/dev-documentation/cipp-dev-guide.
Moving this to planned.
@KelvinTegelaar commented on GitHub (Jan 23, 2024):
In the product. Exchange -> Contacts
@kris6673 commented on GitHub (Jan 24, 2024):
Fyi you can only delete and create new, the edit button on the page does nothing