On Fri, Jan 07, 2005 at 01:59:47AM -0800, Robert Markin wrote: > Now I do not ever get hits from either of these two. Is there some way > that I can check to see if something has become fowled-up? If I try to > run spamassassin with the -D --lint options, it creates an output so > long that I cannot scroll to the top to see if there are any problems.
Redirect STDOUT and STDERR into a file, e.g. append "> /tmp/log 2>&1" (without the quotes) to your command line. Afterwards you can view /tmp/log with your favourite editor. HTH, Rainer