SMTP Relay gửi group có bật
"Require all that senders are authenticated" không được
- Cần Clear "Require all that senders
are authenticated"
Get-DistributionGroup|where
{$_.RequireSenderAuthenticationEnabled-eq$True}|Set-DistributionGroup-RequireSenderAuthenticationEnabled:$False
- Để bảo mật hơn (ngăn spam từ bên
ngoài vào group) => Thêm chỉ nhận mail từ group A11Organization
Get-DistributionGroup | set-distributiongroup -AcceptMessagesOnlyFromDLMembers A11Organization
Quá trình clear có thể bị lỗi Open/Closed group
- Tra danh sách group đang set là
Open:
Get-DistributionGroup
-resultsize unlimited |ft name,memberjoinrestriction,memberdepartrestriction
- Set Close cho các group:
Get-DistributionGroup
| set-DistributionGroup -memberjoinrestriction:closed
-memberdepartrestriction:closed
Comments
Post a Comment