简体   繁体   English

com.sun.mail.smtp.SMTPSendFailedException:452 4.4.5磁盘空间不足; 稍后再试

[英]com.sun.mail.smtp.SMTPSendFailedException: 452 4.4.5 Insufficient disk space; try again later

I am trying to send email through org.apache.commons.mail api in Java under Linux Centos. 我正在尝试在Linux Centos下通过Java中的org.apache.commons.mail api发送电子邮件。

I was able to send emails, but now suddenly when I am trying to send email I am getting the error - 我能够发送电子邮件,但是现在突然在尝试发送电子邮件时出现错误-

com.sun.mail.smtp.SMTPSendFailedException: 452 4.4.5 Insufficient disk space; try again later
at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:2114)
at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:1618)
at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:1119)
at javax.mail.Transport.send0(Transport.java:195)
at javax.mail.Transport.send(Transport.java:124)

I am not understanding why this is happening. 我不明白为什么会这样。 Can anybody please help me to resolve this problem. 谁能帮我解决这个问题。

Thank you 谢谢

I suppose there is no sufficient space in your SMTP server. 我想您的SMTP服务器中没有足够的空间。 The error code 452 from RFC821 confirms the same. 来自RFC821的错误代码452确认相同。 So check out for storage space in your SMTP server. 因此,请检查SMTP服务器中的存储空间。

在我看来,错误消息本身很清楚:您尝试从中发送邮件的服务器上的磁盘空间不足。

The mailserver cannot write the temporary files needed to allow you to collect your mail. 邮件服务器无法编写允许您收集邮件所需的临时文件。

You should ask your ISP to check disk useage and allocation on the server. 您应要求ISP检查服务器上的磁盘使用情况和分配。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 com.sun.mail.smtp.SMTPSendFailedException Javamail - com.sun.mail.smtp.SMTPSendFailedException Javamail MailSendException:失败的消息:com.sun.mail.smtp.SMTPSendFailedException - MailSendException: Failed messages: com.sun.mail.smtp.SMTPSendFailedException com.sun.mail.smtp.SMTPSendFailedException:530 5.7.1客户端未通过身份验证 - com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.1 Client was not authenticated 如何解决com.sun.mail.smtp.SMTPSendFailedException在Java中? - how to solve com.sun.mail.smtp.SMTPSendFailedException in java ? com.sun.mail.smtp.SMTPSendFailedException:530-5.5.1需要身份验证(Java Mail) - com.sun.mail.smtp.SMTPSendFailedException: 530-5.5.1 Authentication Required (Java Mail) Spring Boot 邮件发件人错误:com.sun.mail.smtp.SMTPSendFailedException - Error at Spring Boot mail sender: com.sun.mail.smtp.SMTPSendFailedException com.sun.mail.smtp.SMTPSendFailedException:530 5.7.0必须首先发出STARTTLS命令 - com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.0 Must issue a STARTTLS command first com.sun.mail.smtp.SMTPSendFailedException: 530-5.5.1 需要身份验证 - com.sun.mail.smtp.SMTPSendFailedException: 530-5.5.1 Authentication Required 错误:com.sun.mail.smtp.SMTPSendFailedException:451 4.3.0 错误:队列文件写入错误 - Error: com.sun.mail.smtp.SMTPSendFailedException: 451 4.3.0 Error: queue file write error 如何解决 com.sun.mail.smtp.SMTPSendFailedException:554 Email 被拒绝 - How to resolve com.sun.mail.smtp.SMTPSendFailedException: 554 Email rejected
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM