2

Is there a way to add a domain policy to a Windows 2008 domain that sets the attachments size limit for Outlook (various versions) and Windows Mail?

Valerio Santinelli
  • 123
  • 1
  • 2
  • 6

3 Answers3

2

You're really better off doing this on your SMTP server, because it's not client-dependent.

The maximum message size in Outlook 2010 can be controlled with registry modification even for non-Exchange clients that are just using SMTP to deliver messages. Outlook 2007 and older versions do not have this functionality and rely totally on Exchange's size limiting functionality for their own limits.

I'm not aware of any attachment limiting size functionality in Windows Mail. Being that it's a home-user oriented product it really doesn't surprise me that there wouldn't be any such limit. Typically an ISP's mail server would provide the limiting functionality for home users.

Evan Anderson
  • 141,071
  • 19
  • 191
  • 328
  • Thanks Evan. The remote SMTP already does this kind of check, but there's a problem because no one is stopping clients from sending 300+Mb attachments before they get rejected and with the poor internet connection of this customer it's a problem. Of course teling people not to send big attachments isn't of any help as they just keep doing it all the time. – Valerio Santinelli Nov 19 '12 at 16:21
  • 4
    @ValerioSantinelli - The only other reasonable solution would be to put an on-site SMTP server in place, configured to smart-host to the ISP. You could, at least, stop large attachments before they hit the Internet. – Evan Anderson Nov 19 '12 at 16:36
2

As best practice, you should be doing this on Exchange but i agree why waste time uploading (especially with limited bandwidth) to a hosted SMTP server when it will be rejected anyway.

Open the registry editor and browse to:

Outlook 2013:

HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Preferences

Outlook 2010:

HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Preferences

Then add a new DWORD value: MaximumAttachmentSize

Unlimited message size uses a value of 0. For a specific message size (recommended) enter the value in Kb.

Cold T
  • 2,391
  • 2
  • 16
  • 28
0

This is configured on your MS Exchange server, not via GPOs.

Setting Message Size Limits in Exchange 2010 and Exchange 2007. It has been already asked here.

Volodymyr Molodets
  • 2,404
  • 9
  • 35
  • 52