Postfix SMTP 服务器:错误来自

Postfix SMTP 服务器:错误来自

我正在运行 Postfix 邮件服务器 ru000397.widhost.net。我收到了以下一些邮件[电子邮件保护]

邮件服务正在运行,并且显然所有驱动器上都有大量可用空间。

Transcript of session follows.

 Out: 220 ru000397.widhost.net ESMTP Postfix
 In:  EHLO m145.gem.godaddy.com
 Out: 250-ru000397.widhost.net
 Out: 250-PIPELINING
 Out: 250-SIZE 52428800
 Out: 250-ETRN
 Out: 250-STARTTLS
 Out: 250-AUTH CRAM-MD5 DIGEST-MD5 LOGIN PLAIN
 Out: 250-ENHANCEDSTATUSCODES
 Out: 250-8BITMIME
 Out: 250 DSN
 In:  MAIL FROM:<[email protected]> BODY=8BITMIME
 Out: 452 4.3.1 Insufficient system storage
 In:  RCPT TO:<[email protected]>
 Out: 503 5.5.1 Error: need MAIL command
 In:  DATA
 Out: 503 5.5.1 Error: need RCPT command
 In:  QUIT
 Out: 221 2.0.0 Bye


For other details, see the local mail logfile

主文件:http://pastebin.com/RCBx891e master.cf:http://pastebin.com/1HMyXzuT

这是我的 df 输出:

[root@ru000397 ~]# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2        22G   20G  1.5G  94% /
tmpfs           7.8G   12K  7.8G   1% /dev/shm
/dev/sdb        2.7T  1.7T  867G  67% /usr/local/psa

[root@ru000397 ~]# df -i
Filesystem        Inodes    IUsed     IFree IUse% Mounted on
/dev/sda2        1455328   242748   1212580   17% /
tmpfs            2035051        2   2035049    1% /dev/shm
/dev/sdb       181141504 11000662 170140842    7% /usr/local/psa

这是我的message_size_limit:

[root@ru000397 ~]# postconf -n|grep message_size_limit
message_size_limit = 52428800

答案1

您确定有足够的可用磁盘空间用于 /var 吗?您的df -hdf -i看起来怎么样?您很可能实际上没有足够的空间或已经用完了 inode。

答案2

运行postconf -n以打印出您的 postfix 配置并找到 的值message_size_limit

/var/spool/postfix运行以下命令检查剩余空间量:

du -sh /var/spool/postfix

相关内容