From eb9c0fbef40a7b46df237e0662a77d8d07c8108d Mon Sep 17 00:00:00 2001 From: Zhang Huangbin Date: Sun, 18 Sep 2016 10:58:35 +0800 Subject: [PATCH] Mention how to change attachment size limit in MS Outlook. --- en_US/howto/1-change.mail.attachment.size.md | 39 ++++++++++++++++++ html/change.mail.attachment.size-zh_CN.html | 38 +++++++++++++++++- html/change.mail.attachment.size.html | 42 +++++++++++++++++++- zh_CN/howto/1-change.mail.attachment.size.md | 35 ++++++++++++++++ 4 files changed, 152 insertions(+), 2 deletions(-) diff --git a/en_US/howto/1-change.mail.attachment.size.md b/en_US/howto/1-change.mail.attachment.size.md index f4c82a86..4a4c6085 100644 --- a/en_US/howto/1-change.mail.attachment.size.md +++ b/en_US/howto/1-change.mail.attachment.size.md @@ -109,3 +109,42 @@ WOMaxUploadSize = 102400; ``` Restarting SOGo service is required. + +## Change attachment size limit in Microsoft Outlook + +Outlook has its own attachment size limit, and will raise error like `The +attachment size exceeds the allowable limit.` + +To modify the default attachment limit size in Outlook on Windows system, +follow these steps: + +* Exit Outlook. +* Start Registry Editor. +* Locate and then select one of the following registry subkeys: + +``` +HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Preferences +HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\14.0\Outlook\Preferences +``` + +Notes: + + * Manually create the path in the registry if it does not currently exist. + * `14.01 means Outlook version number, it may be different on your system. + +* Add the following registry data under this subkey: + + * Value type: DWORD + * Value name: MaximumAttachmentSize + * Value data: An integer that specifies the total maximum allowable + attachment size. For example, specify 30720 (Decimal) to configure a + 30-MB limit. + +Notes: + + * Specify a value of zero (0) if you want to configure no limit for attachments. + * Specify a value that is less than 20 MB if you want to configure a limit + that is less than the default 20 MB. + +* Exit Registry Editor +* Start Outlook. diff --git a/html/change.mail.attachment.size-zh_CN.html b/html/change.mail.attachment.size-zh_CN.html index 9f1d874e..1e94dcc8 100644 --- a/html/change.mail.attachment.size-zh_CN.html +++ b/html/change.mail.attachment.size-zh_CN.html @@ -31,6 +31,7 @@
  • 限制 Nginx 上传文件大小
  • 限制 SOGo 上传文件大小
  • +
  • 修改 Outlook 程序的附件大小限制
  • @@ -110,7 +111,42 @@ php_value post_max_size 100M WOMaxUploadSize = 102400; -

    修改后需要重启 SOGo 服务。