http://www.fieldbrook.net/TechTips/Exchange/EntourageAttachments.asp
Exchange Server 2007/2010 and Entourage: Modify the attachment size limit that affects Entourage users
Entourage users connected to Exchange Server 2007 or 2010 may not be able to send large file attachments. Here are some steps to correct that problem:
- Set the sending size limits wherever possible in Exchange System Manager.
- Use Notepad or other text editor to open the web.config file found in the following directory:
For Exchange Server 2007:
c:\Program Files\Microsoft\Exchange Server\ClientAccess\exchweb\ews.
For Exchange Server 2010:
c:\Program Files\Microsoft\Exchange Server\v14\ClientAccess\exchweb\ews. - Search for the string "maxrequestlength" in the web.config file.
- Modify the value to reflect the desired attachment size limit in Kilobytes. Example: 35000 indicates 35,000 KB or 35 MB.
- Save the file.
- Repeat the above steps for the web.config file under \ClientAccess\owa.
- If running Windows Server 2003, then run iisreset from a command prompt.
- If running Windows Server 2008, then run the following lines from a command prompt, replacing the number at the end of the appcmd lines with your desired attachment size. In the examples below, we use 35 MB as the desired size. The appcmd lines are broken into two lines for readability on this page, but should be entered as a single line on your system.
cd\
cd \Windows\System32\inetsrv
appcmd set config "Default Web Site/ews" -section:requestFiltering
-requestLimits.maxAllowedContentLength:35000000
appcmd set config "Default Web Site/owa" -section:requestFiltering
-requestLimits.maxAllowedContentLength:35000000
iisreset
Note: Reports indicate that you should double the numbers of the limit that you actually want to set. For example, if you want to permit 35 MB attachments, then set the numbers for 70 MB.
Note for Small Business Server (SBS) 2008 users:
Run the appcmd lines, but modified as follows:
appcmd set config "SBS Web Applications/ews" -section:requestFiltering
-requestLimits.maxAllowedContentLength:35000000
appcmd set config "SBS Web Applications/owa" -section:requestFiltering
-requestLimits.maxAllowedContentLength:35000000
'2014' 카테고리의 다른 글
exchange 2007 Windows 2008 과 Outlook Anywhere 문제 (0) | 2014.02.14 |
---|---|
exchange 2007 Export/Import-Mailbox (0) | 2014.02.14 |
Windows 2008 기반에서 Exchange 2007 메일 전송 실패시 (0) | 2014.02.14 |