MediaBin 4.5.3
Windows 2003 EE SP1
I have setup a mail server in the EmailAsAttachment.asp as follows:
' The following values are used for talking with IIS SMTP service on this box
' You may need to uncomment 3rd entry (and verify path) because IIS sometimes forgets where the pickup directory is located
' objFlds("http://schemas.microsoft.com/cdo/configuration/urlgetlatestversion") = True
' objFlds("http://schemas.microsoft.com/cdo/configuration/sendusing") = 1 ' cdoSendUsingPickup
' objFlds("http://schemas.microsoft.com/cdo/configuration/smtpserverpickupdirectory")= "c:\Inetpub\mailroot\Pickup"
' The following values are used for talking with SMTP on a different server (or non IIS STMP server on same box)
objFlds("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "10.99.20.52"
objFlds("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 ' standard port for SMTP
objFlds("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 ' cdoSendUsingPort
I am getting the following error trying to submit a message:
Error -2147220975 : The message could not be sent to the SMTP server. The transport error code was 0x800ccc6d. The server response was 552 message size exceeds fixed maximium message size
The operations team swears the server can handle up to 10mb in attachments, but this is just a little over 5. 5 worked. Is there some sort of setting in another asp file or elsewhere in mediabin for this setting?
I have set it up as 10 MB in the Virtual SMTP server in IIS, but by virtue of the EmailAsAttachment.asp file, I don't think it is using this anyway.
How else can I figure out where this is dying? The mail server owner said they are not seeing a failed request being sent there, so this is stopping on the MediaBin server.