Path: utzoo!utgpu!watmath!clyde!att!osu-cis!tut.cis.ohio-state.edu!unmvax!ncar!boulder!sunybcs!bingvaxu!leah!itsgw!steinmetz!uunet!auspex!guy From: guy@auspex.UUCP (Guy Harris) Newsgroups: comp.unix.questions Subject: Re: uuxqt questions Message-ID: <589@auspex.UUCP> Date: 6 Dec 88 08:17:08 GMT References: <767@umt.UUCP> Reply-To: guy@auspex.UUCP (Guy Harris) Organization: Auspex Systems, Santa Clara Lines: 23 >1) This was the result of mail being sent to an unknown user-id. Do the > status/signal/exit values provide me with useful debugging information? > > shio - PAT=/bin:/usr/bin:/usr/ucb;export PATH;rmail sri > Subfile with prefix:/usr/spool/uucp/sys/DEFAULT/D./D.ucdavisScBL2 > status 17152 > retstat is signal 0, exit 67: Well, I suspect you can argue either way on whether it's "useful debugging information" or not.... Mail software, at least under BSD, tends to use a set of exit status conventions listed in. 67 is EX_NOUSER, "addressee unknown", which tells you it's mail sent to an unknown user ID. From your comment, though, I infer you already knew that. Also, unless you happen to know that those conventions are used, the numbers might as well be random. Those could be considered arguments that it's not useful debugging information.... (17152 is 67*256, or "67 in the next byte up from the bottom"; in other words, it's the same as "signal 0, exit 67" - see WAIT(2) - and thus redundant.)