EEEKB article--Go to Exchange Online Services in Office 365 13 How to manage mail users and contacts for Exchange online

Source: Internet
Author: User

In the previous article's description, two concepts-contacts and groups-were mentioned. Next, the issue is specifically about recipient objects for Exchange online. For Exchange online, all objects that can receive messages are called recipient objects, and they have a common feature of having e-mail addresses. Although these objects have e-mail addresses in Exchange online, they do not necessarily have mailboxes for storing messages.

Mail users and Contacts are recipient objects that belong to only the mail address in Exchange online and do not have a mailbox store. The purpose of creating such objects in Exchangeonline is to make it easy for Exchange mailbox users to easily find the recipients they want in the address list without having to memorize the recipient's e-mail addresses. In addition, it may be used in some management of exchange online, such as accepting or rejecting recipient objects that need to be added when passing restrictions on the user's mailbox through the EAC settings.

Exchangeonline Mail user and contact management can be done through the EAC or PowerShell. In the EAC, both of these different recipient objects are divided into contacts that are managed.

One, the management exchangeonline mail user

1 , create mail users

In the left navigation bar in the EAC, navigate to recipients, and then select the Contacts tab in the right-hand window. Click on the "+" button and click "Mail User" in the drop-down menu to open the "New Mail User" window.

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/6F/0B/wKiom1WQIkaC-iPBAAFpxd1PZGo234.jpg "title=" 01.png "alt=" Wkiom1wqikac-ipbaafpxd1pzgo234.jpg "/>

In the Create New Mail User window, fill in the user's basic information as required. In particular, "external e-mail address" and "User ID" are important to note. This is because the recipient has an e-mail address, and the Exchange Online user can send mail directly to that address, and the recipient is a user of Exchange online, so the recipient object can be logged on to Office 365. However, if you need to use Office 365 features, you should also assign licenses in Office 365, but be aware that you should not assign Exchange online licenses when assigning licenses because they are using external mailboxes. If you assign a Exchangeonline license, you become an Exchange online mailbox user.

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M00/6F/08/wKioL1WQJB3QaW3bAAG2_4eoOio331.jpg "title=" 02.png "alt=" Wkiol1wqjb3qaw3baag2_4eooio331.jpg "/>

Click "Save" to complete the creation of the mail user. Use Get-user to see this user's recipient type "Mailuser" through PowerShell.

Get-user

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/6F/0B/wKiom1WQImvgMUWxAAE_mOC_OGE313.jpg "title=" 03.png "alt=" Wkiom1wqimvgmuwxaae_moc_oge313.jpg "/>

You can also create mail users by using New-mailuser with PowerShell. And can be bulk operations, the method for bulk operations can refer to the method of bulk create mailbox users. When you are finished, you can verify that the creation was successful by Get-mailuser .

New-mailuser-name "Fengshier"-alias fengshier-externalemailaddress [email protected] Shier-lastname Feng- Microsoftonlineservicesid [email protected] (convertto-securestring-string ' [email protected] '-asplaintext-force)

get-mailuser-resultsizeunlimited

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M00/6F/08/wKioL1WQJFeDVmm7AAIuL2ka6z8310.jpg "title=" 04.png "alt=" Wkiol1wqjfedvmm7aaiul2ka6z8310.jpg "/>

2 , configure mail users

In the EAC, navigate to recipients, navigate to the Contacts tab, select the mail user you want to configure, click the Pen button, and open the Mail User Properties window.

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M00/6F/0B/wKiom1WQIp-zIrzHAAGRfXFV8WM528.jpg "title=" 05.png "alt=" Wkiom1wqip-zirzhaagrfxfv8wm528.jpg "/>

In the General option, you can configure account basic information, such as "Display Name", "Hide in address List", etc.

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M01/6F/08/wKioL1WQJG-BAbzHAAHuw0mNYe4315.jpg "title=" 06.png "alt=" Wkiol1wqjg-babzhaahuw0mnye4315.jpg "/>

On the e-mail Addresses tab, you can add or remove or modify e-mail addresses for mail users.

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M01/6F/0B/wKiom1WQIrjT7jOtAAJEWTtu0KY038.jpg "title=" 07.png "alt=" Wkiom1wqirjt7jotaajewttu0ky038.jpg "/>

In the Mail Flow Settings tab, you can set message delivery restrictions. Limit the senders that are accepted or rejected.

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/6F/08/wKioL1WQJIKAX_wfAAHNecV9Pio047.jpg "title=" 08.png "alt=" Wkiol1wqjikax_wfaahnecv9pio047.jpg "/>

Click the "Save" button to complete the configuration.

get-mailuser and Set-mailuser through PowerShell can also be viewed and set up for mail users

Get-mailuser Fengshier | Flname,externalemailaddress

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/6F/0B/wKiom1WQIsmB5rl_AAC87TSU-NI870.jpg "title=" 09.png "alt=" Wkiom1wqismb5rl_aac87tsu-ni870.jpg "/>

Modify the e-mail address for the mail user and hide it in the address list.

Set-mailuser fengshier-externalemailaddress [email protected]-hiddenfromaddresslistsenabled $true

Get-mailuser Fengshier | Flname,externalemailaddress,-hiddenfromaddresslistsenabled

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M00/6F/08/wKioL1WQJJHTEQUSAAH4-SO_GTY720.jpg "title=" 10.png "alt=" Wkiol1wqjjhtequsaah4-so_gty720.jpg "/>

Second, the management exchangeonline contact

Contacts in Office 365 do not have logon access and can actually be thought of as a business card created in Office 365. It contains only the communication information of the contact person, especially the email address.

1 , create a contact

In Office 365, you can create contacts from the Office 365 Admin Center, the Exchange Admin Center, and PowerShell. Here, you'll only describe methods for creating contacts through the Exchange Admin Center.

In the left navigation bar in the EAC, navigate to recipients, and then select the Contacts tab in the right-hand window. Click on the "+" button and click "Mail Contact" in the drop-down menu to open the "New contact" window.

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M00/6F/0B/wKiom1WQItjxg2ZbAAF43QSaV1M604.jpg "title=" 11.png "alt=" Wkiom1wqitjxg2zbaaf43qsav1m604.jpg "/>

As required to fill in the user's basic information, the key needs to define "external e-mail address." Click "Save" to complete the creation of the contact.

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M01/6F/08/wKioL1WQJJ-Tu3EwAAF5ylSmFwc409.jpg "title=" 12.png "alt=" Wkiol1wqjj-tu3ewaaf5ylsmfwc409.jpg "/>

Second, configure the contact

and configure mail users, in the EAC, navigate to recipients, locate the Contacts tab, select the mail contact you want to configure, click the Pen button, and open the Mail Contact Properties window.

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M01/6F/0B/wKiom1WQIufTBu3CAAGwgkZ4EgY211.jpg "title=" 13.png "alt=" Wkiom1wqiuftbu3caagwgkz4egy211.jpg "/>

Here you can modify information about a contact, such as "External e-mail address." Click "Save" to finish the configuration.

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/6F/08/wKioL1WQJK-w2tONAAHMz2Aq1_E234.jpg "title=" 14.png "alt=" Wkiol1wqjk-w2tonaahmz2aq1_e234.jpg "/>


This article is from the "Fat Brother Technology Hall" blog, please be sure to keep this source http://liulike.blog.51cto.com/1355103/1668895

EEEKB article--Go to Exchange Online Services in Office 365 13 How to manage mail users and contacts for Exchange online

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.