This page details why the arrival of emails may be delayed and remediation actions to solve this issue.
n | Mails arrive late in days - delayed arrival |
n | No errors in Votiro logs |
n | No specific high resource consumption |
This situation might be related to Message throttling.
Get information of the Edge Connector:
Get-ReceiveConnector | Format-List Name,Connection*,MaxInbound*,MessageRate*,TarpitInterval
Expected result
Before:
Name : Default Connector Name
ConnectionTimeout : 00:05:00
ConnectionInactivityTimeout : 00:01:00
MaxInboundConnection : 5000
MaxInboundConnectionPerSource : 20
MaxInboundConnectionPercentagePerSource : 2
MessageRateLimit : 600
MessageRateSource : IPAddress
TarpitInterval : 00:00:05
>The configuration allows maximum of 20 simultaneous connections from a single IP.
Action:
Change the parameters using syntax:
Set-ReceiveConnector -Identity <Put the Identity name> -ConnectionTimeout 00:10:00)
After:
Name: Default Connector Name
ConnectionTimeout: 00:10:00
ConnectionInactivityTimeout: 00:01:00
MaxInboundConnection: 5000
MaxInboundConnectionPerSource: 50
MaxInboundConnectionPercentagePerSource: 5
MessageRateLimit: 600
MessageRateSource: IPAddress
TarpitInterval: 00:00:05
Comments
0 comments
Please sign in to leave a comment.