본문 바로가기
Windows

exchange2007 송수신 첨부파일 제한 iis 관련

by 세계정보ㄱ 2014. 2. 17.
728x90
반응형

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


http://edmckinzie.wordpress.com/2009/11/30/max-message-size-increase-owa-imap-ews-maxrequestlength-and-maxallowedcontentlength/



728x90
반응형