Hi all!
I am using a UNIX server as my POP3 Server. I noticed my syslog file was
showing an error '-ERR: Unknown command: "auth".' Compiling with -DDEBUG,
and running from inetd with "-d -t /var/adm/POPlog" I was able to see
what was going on. Internet Mail is sending "AUTH twinkie", whatever
the heck that's supposed to be. Anyway, I have a patch here for Qualcomm's
qpopper v2.2 (ftp://ftp.qualcomm.com/unix/servers/popper/qpop2.2.tar.Z) to
stop loading up the log file with errors (even if they were harmless). Note
you'll need to compile with -DMS_INTERNET_MAIL_CLIENTS or define it in
popper.h.
----CUT HERE-------------------------------------------------------
*** pop_get_command.c.orig Thu Feb 1 14:43:17 1996
--- pop_get_command.c Thu Dec 5 12:55:33 1996
***************
*** 23,28 ****
--- 23,31 ----
*/
static state_table states[] = {
+ #ifdef MS_INTERNET_MAIL_CLIENTS
+ auth1, "auth", 1, 1, NULL, {auth1, auth1},
+ #endif
auth1, "user", 1, 1, pop_user, {auth1, auth2},
auth2, "pass", 1, 1, pop_pass, {halt, trans},
#ifdef RPOP