回條設定
Set-MailboxMessageConfiguration
-ReadReceiptResponse
The ReadReceiptResponse parameter specifies how to respond to requests for read receipts for the user in Outlook on the web. You can use the following values:
- DoNotAutomaticallySend
- AlwaysSend
- NeverSend
The default value is DoNotAutomaticallySend.
Checking
Get-MailboxMessageConfiguration -Identity tim.lau
................. ReadReceiptResponse : NeverSend .................
OOF
* Exchange 2010
# Server Setting
Get-RemoteDomain Default | fl AllowedOOFType, AutoReplyEnabled, AutoForwardEnabled
AllowedOOFType : ExternalLegacy AutoReplyEnabled : True AutoForwardEnabled : True
# User Setting
Get-MailboxAutoReplyConfiguration USERNAME
RunspaceId : b6af97ac-9b7a-4dab-b3b4-d3249d62b5e9 AutoReplyState : Disabled EndTime : 4/17/2020 11:00:00 AM ExternalAudience : All ExternalMessage : ... InternalMessage : ... StartTime : 4/16/2020 11:00:00 AM MailboxOwnerId : DOMAIN.local/Users/USERNAME Identity : DOMAIN.local/Users/USERNAME IsValid : True
Set-Mailbox USERNAME -ExternalOofOptions External
# Enable / Disable User AutoReply in PS
Set-MailboxAutoReplyConfiguration "USERNAME" -AutoReplyState enabled
Set-MailboxAutoReplyConfiguration "USERNAME" -AutoReplyState disabled
# Log
一共會有 3 條 log record
----------------------- 1 EventId: RECEIVE Source: MAILBOXRULE ----------------------- 2 EventId: TRANSFER Source: ROUTING ----------------------- 3 EventId: SEND Source: SMTP
Service
MSExchangeMailboxAssistants
(Performs background processing of mailboxes in the Exchange store.)
advised to set the startup on this service to delayed startup when running on a vitual server that these mailbox servers are.