Mention how to change attachment size limit in MS Outlook.

This commit is contained in:
Zhang Huangbin 2016-09-18 10:58:35 +08:00
parent 7219ebbe00
commit eb9c0fbef4
4 changed files with 152 additions and 2 deletions

View File

@ -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.

View File

@ -31,6 +31,7 @@
</li>
<li><a href="#nginx">限制 Nginx 上传文件大小</a></li>
<li><a href="#sogo">限制 SOGo 上传文件大小</a></li>
<li><a href="#outlook">修改 Outlook 程序的附件大小限制</a></li>
</ul>
</li>
</ul>
@ -110,7 +111,42 @@ php_value post_max_size 100M
WOMaxUploadSize = 102400;
</code></pre>
<p>修改后需要重启 SOGo 服务。</p><div class="footer">
<p>修改后需要重启 SOGo 服务。</p>
<h2 id="outlook">修改 Outlook 程序的附件大小限制</h2>
<p>Outlook 有自己的附件大小限制,如果超出限制会弹出错误信息 <code>The
attachment size exceeds the allowable limit.</code></p>
<p>如需要在 Windows 系统上修改 Outlook 程序的附件大小限制,请参照以下步骤:</p>
<ul>
<li>退出 Outlook 程序</li>
<li>运行注册表编辑器:开始 -&gt; 运行 -&gt; 输入 "regedit"</li>
<li>找到并选择以下任意一个条目:</li>
</ul>
<pre><code>HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Preferences
HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\14.0\Outlook\Preferences
</code></pre>
<p>注意:</p>
<pre><code>* 如果不存在可自行创建。
* 14.04 表示 Outlook 的版本号,在你的系统上可能不一样。
</code></pre>
<ul>
<li>
<p>在以上条目底下添加注册表项:</p>
<ul>
<li>类型DWORD</li>
<li>名称MaximumAttachmentSize</li>
<li>一个用于表示最大附件大小的整数。例如30720 表示 30MB 限制。</li>
</ul>
</li>
</ul>
<p>注意:</p>
<pre><code>* 设置为 0 表示无限制。
* 默认限制为 20MB。可设置小于 20MB 的附件大小。
</code></pre>
<ul>
<li>退出注册表编辑器。</li>
<li>启动 Outlook。</li>
</ul><div class="footer">
<p style="text-align: center; color: grey;">All documents are available in <a href="https://bitbucket.org/zhb/iredmail-docs/src">BitBucket repository</a>, and published under <a href="http://creativecommons.org/licenses/by-nd/3.0/us/" target="_blank">Creative Commons</a> license. You can <a href="https://bitbucket.org/zhb/iredmail-docs/get/tip.tar.bz2">download the latest version</a> for offline reading. If you found something wrong, please do <a href="http://www.iredmail.org/contact.html">contact us</a> to fix it.</p>
</div>
<script type="text/javascript">

View File

@ -31,6 +31,7 @@
</li>
<li><a href="#change-upload-file-size-in-nginx">Change upload file size in Nginx</a></li>
<li><a href="#change-upload-file-size-in-sogo-3x">Change upload file size in SOGo-3.x</a></li>
<li><a href="#change-attachment-size-limit-in-microsoft-outlook">Change attachment size limit in Microsoft Outlook</a></li>
</ul>
</li>
</ul>
@ -119,7 +120,46 @@ size.</p>
WOMaxUploadSize = 102400;
</code></pre>
<p>Restarting SOGo service is required.</p><div class="footer">
<p>Restarting SOGo service is required.</p>
<h2 id="change-attachment-size-limit-in-microsoft-outlook">Change attachment size limit in Microsoft Outlook</h2>
<p>Outlook has its own attachment size limit, and will raise error like <code>The
attachment size exceeds the allowable limit.</code></p>
<p>To modify the default attachment limit size in Outlook on Windows system,
follow these steps:</p>
<ul>
<li>Exit Outlook.</li>
<li>Start Registry Editor.</li>
<li>Locate and then select one of the following registry subkeys:</li>
</ul>
<pre><code>HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Preferences
HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\14.0\Outlook\Preferences
</code></pre>
<p>Notes:</p>
<pre><code>* 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.
</code></pre>
<ul>
<li>
<p>Add the following registry data under this subkey:</p>
<ul>
<li>Value type: DWORD</li>
<li>Value name: MaximumAttachmentSize</li>
<li>Value data: An integer that specifies the total maximum allowable
attachment size. For example, specify 30720 (Decimal) to configure a
30-MB limit.</li>
</ul>
</li>
</ul>
<p>Notes:</p>
<pre><code>* 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.
</code></pre>
<ul>
<li>Exit Registry Editor</li>
<li>Start Outlook.</li>
</ul><div class="footer">
<p style="text-align: center; color: grey;">All documents are available in <a href="https://bitbucket.org/zhb/iredmail-docs/src">BitBucket repository</a>, and published under <a href="http://creativecommons.org/licenses/by-nd/3.0/us/" target="_blank">Creative Commons</a> license. You can <a href="https://bitbucket.org/zhb/iredmail-docs/get/tip.tar.bz2">download the latest version</a> for offline reading. If you found something wrong, please do <a href="http://www.iredmail.org/contact.html">contact us</a> to fix it.</p>
</div>
<script type="text/javascript">

View File

@ -100,3 +100,38 @@ WOMaxUploadSize = 102400;
```
修改后需要重启 SOGo 服务。
## 修改 Outlook 程序的附件大小限制
Outlook 有自己的附件大小限制,如果超出限制会弹出错误信息 `The
attachment size exceeds the allowable limit.`
如需要在 Windows 系统上修改 Outlook 程序的附件大小限制,请参照以下步骤:
* 退出 Outlook 程序
* 运行注册表编辑器:开始 -> 运行 -> 输入 "regedit"
* 找到并选择以下任意一个条目:
```
HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Preferences
HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\14.0\Outlook\Preferences
```
注意:
* 如果不存在可自行创建。
* 14.04 表示 Outlook 的版本号,在你的系统上可能不一样。
* 在以上条目底下添加注册表项:
* 类型DWORD
* 名称MaximumAttachmentSize
* 值一个用于表示最大附件大小的整数。例如30720 表示 30MB 限制。
注意:
* 设置为 0 表示无限制。
* 默认限制为 20MB。可设置小于 20MB 的附件大小。
* 退出注册表编辑器。
* 启动 Outlook。