Eğer Yalnızca belirli bir kullanıcıya dışarıdan e-posta gelmesini engellmek istiyorsanız, aşağıdaki PowerShell komutunu yazarak Transport Rule oluşturabilirsiniz.
eliftest@uchan.local kullanıcısının dışarıdan mail almasını istemiyorum. Komutu buna göre yazacağım.
New-TransportRule -Name "BlockIncomingExternalToElifTest" ` -SentTo "eliftest@uchan.local" ` -FromScope NotInOrganization ` -RejectMessageReasonText "External emails are not allowed for this user." ` -Enabled $true
