Forum
Merhaba Arkadaşlar;
Hybrid yapıda kullandığımız mail sistemimizde O365 üzerinde bulunan bir kullanıcı herhangibir yere(gmail, on prem, hotmail, microsoft....) 11 mb boyutunda mail atmak istediğinde "Bu ileti, fazla büyük olduğundan hiç kimseye teslim edilmedi. Sınır 10 MB'dir" şeklinde hata almaktadır. Yapımızda mail 0365 üzerinden gönderilse bile kendi cas sunucularımızın üzerinden geçmektedir. Fakat 0365 üzerinde bulunan kullanıcı yine 0365 üzerinde bulunan kullanıcıya mail göndermek istediğinde sorun oluşmamaktadır. Local Hub-Cas sunucularında kontrol ettiğim yerler
Organization Configuration > Global Settings > Transport Settings > Maximum receive size and Maximum send size = Unlimited (25600 de yaparak denedim)
Organization Configuration > Transport Rule > Limit Kuralı > 25 MB
Organization Configuration > Send Connectors > All Connectors Unlimited
Server Configuration > Receive Connectors > All Connectors 25600
Recepient Configuration > Mailbox > Mail Flow settings > Message Size Restrictions > 25600
Office 365 tarafında kontrol;
Get-MailboxPlan = 150 mb
Limit Rules = 25600 mb
Hata mesajının detayı
550 5.2.3 RESOLVER.RST.SendSizeLimit.Sender; message too large for this sender ##
Konu hakkında yardımcı olabilecek var mı? Muhtemelen sorun 0365 ile on-prem arasında ki connectorde ama bir türlü çözemedim 🙂
Merhaba Ufuk Bey,
Aşağıdaki powershell komutunu her iki taraftada çalıştırabilir misiniz?
Get-mailbox -Identity "[email protected]" | ft Name, MaxSendSize, MaxReceiveSize
Bilginize.
Merhaba Ufuk Bey,
Aşağıdaki powershell komutunu her iki taraftada çalıştırabilir misiniz?
Get-mailbox -Identity "[email protected]" | ft Name, MaxSendSize, MaxReceiveSize
Bilginize.
Merhaba Ümit Bey;
Çıktı aşağıdaki gibi.
Name MaxSendSize MaxReceiveSize
---- ----------- --------------
UFUK ARGUN 35 MB (36,700,160 bytes) 36 MB (37,748,736 bytes)
Merhaba Ufuk Bey,
Aşağıdaki powershell komutunu her iki taraftada çalıştırabilir misiniz?
Get-mailbox -Identity "[email protected]" | ft Name, MaxSendSize, MaxReceiveSize
Bilginize.
Merhaba Ümit Bey;
Çıktı aşağıdaki gibi.
Name MaxSendSize MaxReceiveSize
---- ----------- --------------
UFUK ARGUN 35 MB (36,700,160 bytes) 36 MB (37,748,736 bytes)
Merhaba Ufuk Bey,
Aşağıdaki komutlarını çalıştırıp, Exchange servislerini restart ettikten sonra tekrardan deneyebilir misiniz?
Set-TransportConfig -MaxReceiveSize 40MB -MaxSendSize 40MB
Set-ReceiveConnector "CONNECTOR NAME" -MaxMessageSize 40Mb
Set-SendConnector "CONNECTOR NAME" -MaxMessageSize 40Mb
Set-Mailbox "Mailbox alias" -MaxSendSize 20Mb -MaxReceiveSize 20Mb
Set-ADSiteLink "DEFAULTIPSITELINK" -MaxMessageSize 20Mb
Get-MessageTrackingLog -EventID FAIL | where {$_.RecipientStatus -like "RecipSizeLimit"}
Get-MessageTrackingLog -EventID FAIL | where {$_.RecipientStatus -like "*SendSizeLimit*"}
Bilginize.
Merhaba Ufuk Bey,
Aşağıdaki powershell komutunu her iki taraftada çalıştırabilir misiniz?
Get-mailbox -Identity "[email protected]" | ft Name, MaxSendSize, MaxReceiveSize
Bilginize.
Merhaba Ümit Bey;
Çıktı aşağıdaki gibi.
Name MaxSendSize MaxReceiveSize
---- ----------- --------------
UFUK ARGUN 35 MB (36,700,160 bytes) 36 MB (37,748,736 bytes)
Merhaba Ufuk Bey,
Aşağıdaki komutlarını çalıştırıp, Exchange servislerini restart ettikten sonra tekrardan deneyebilir misiniz?
Set-TransportConfig -MaxReceiveSize 40MB -MaxSendSize 40MB
Set-ReceiveConnector "CONNECTOR NAME" -MaxMessageSize 40Mb
Set-SendConnector "CONNECTOR NAME" -MaxMessageSize 40Mb
Set-Mailbox "Mailbox alias" -MaxSendSize 20Mb -MaxReceiveSize 20Mb
Set-ADSiteLink "DEFAULTIPSITELINK" -MaxMessageSize 20Mb
Get-MessageTrackingLog -EventID FAIL | where {$_.RecipientStatus -like "RecipSizeLimit"}
Get-MessageTrackingLog -EventID FAIL | where {$_.RecipientStatus -like "*SendSizeLimit*"}
Bilginize.
Merhaba;
Çıktıları özetleyerek aşağıda yazıyorum.
Get-TransportConfig 25 mb / Unlimited (Office 365)
Get-ReceiveConnector ALL CONNECTOR = 25 MB
Get-SendConnector ALL CONNECTOR = 25 MB
Get-Mailbox send/receive = 35 MB/36 MB
Get-ADSiteLink All link = unlimited
Merhaba Ufuk Bey,
Ayarları belirttiğim gibi değiştirip, tekrardan deneyebilir misiniz?
Set-TransportConfig -MaxReceiveSize 40MB -MaxSendSize 40MB
Set-ReceiveConnector "CONNECTOR NAME" -MaxMessageSize 40Mb
Set-SendConnector "CONNECTOR NAME" -MaxMessageSize 40Mb
Set-Mailbox "Mailbox alias" -MaxSendSize 20Mb -MaxReceiveSize 20Mb
Set-ADSiteLink "DEFAULTIPSITELINK" -MaxMessageSize 20Mb
Get-MessageTrackingLog -EventID FAIL | where {$_.RecipientStatus -like "RecipSizeLimit"}
Get-MessageTrackingLog -EventID FAIL | where {$_.RecipientStatus -like "*SendSizeLimit*"}
Bilginize.
Merhaba Ümit Bey
Sorunu çözdüm hiç beklemediğim bir yerden çıktı. Kullanıcının Attiributelerinde ki "submissionContLength" ve "delivContLength" 10 mb görünüyordu. Bunları 25 mb a çıkartarak sorunu çözdüm. Teşekkürler.