Date: Tue, 22 Dec 1998 13:40:37 +1030 From: Greg Lehey <grog@lemis.com> To: peter kok <peter@sweda.com.hk>, freebsd <freebsd-questions@FreeBSD.ORG> Subject: Re: warning message Message-ID: <19981222134037.D85005@freebie.lemis.com> In-Reply-To: <367F0A3D.12046C10@sweda.com.hk>; from peter kok on Tue, Dec 22, 1998 at 10:55:57AM %2B0800 References: <367F0A3D.12046C10@sweda.com.hk>
next in thread | previous in thread | raw e-mail | index | archive | help
On Tuesday, 22 December 1998 at 10:55:57 +0800, peter kok wrote: > Hello > > I recvd warning message as follows: > > Final-Recipient: RFC822; peter@sweda.com.hk > Action: delayed > Status: 4.3.1 > Remote-MTA: DNS; tt01.tech-trans.com > Diagnostic-Code: SMTP; 452 Filesystem error - message not accepted > Last-Attempt-Date: Mon, 21 Dec 1998 23:50:21 +0800 > Will-Retry-Until: Sat, 26 Dec 1998 19:47:59 +0800 > > do you know what is the meaning of > > Diagnostic-Code: SMTP; 452 Filesystem error - message not accepted Well, it's in the range 400-499, so it's a retryable error (thus the rest of the message). A quick look through the sendmail source shows: $ grep 452 *.c collect.c: usrerr("452 Out of disk space for temp file"); queue.c: syserr("!452 Error writing control file %s", tf); savemail.c: case 452: /* Req action not taken: insufficient sys storage */ srvrsmtp.c: usrerr("452 Insufficient disk space; try again later"); srvrsmtp.c: usrerr("452 Too many recipients"); usersmtp.c: if (r == 452) In other words, sendmail uses it to indicate some kind of resource problem. This system is running Netscape, so we can't look at the source sendmail, but also that either the file system is full (most likely) or that there was an I/O error writing the message to disk. I've just tried sending a message to the postmaster, and it was accepted, so you can assume that the problem has been solved. Probably your message has now been delivered. Greg -- See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19981222134037.D85005>