标签:
使用Outlook客户收发邮件时,系统提示452 4.3.1 insufficient system resources,此时邮件还在草稿箱,还没有将邮件提交到队列数据库中。
解决方案:
在Exchange Server安装目录下,例如:C:\Program Files\Microsoft\Exchange Server\Bin,编辑EdgeTransport.exe.config配置文件:
修改
<add key="EnableResourceMonitoring" value="true" />
为
<add key="EnableResourceMonitoring" value="False" />
检查队列数据库所在磁盘可用空间,如果空间剩余5GB,修改队列数据文件的路径
再次编辑EdgeTransport.exe.config配置文件:
修改
<add key="QueueDatabasePath" value = "C:\Program Files\Microsoft\Exchange Server\TransportRoles\data\Queue" />
为
<add key="QueueDatabasePath" value = "D:\Data\Queue" />
操作完成之后重启Exchange的传输服务。
452 4.3.1 insufficient system resources
标签:
原文地址:http://blog.csdn.net/dennymvp/article/details/43953273