On Tue, Dec 02, 2003 at 06:33:54AM -0800, zanchu_ml_01 @ hotmail_com wrote: > Thanks Brian.. I checked everything. Is this a firewall/linux issue ? > My error specifically says "Connection refused" > Dec 2 05:53:25 yukon sqwebmaild: authdaemon: s_connect() failed: Connection refused
Nope; the connection is via a Unix-domain socket, and therefore should not have anything to do with an IP firewall. > ----- > > here are my attempts: > ----- > 00. Dropped the firewall and everything else > ----- > 01. Searched the whole code for the word "refused". > [EMAIL PROTECTED] sqwebmail-3.6.2]# grep -i -r refused * > NOTHING.. You won't find it like that. The message is a system error string - accessed for example via sys_errlist[], perror(), or syslog("%m") - reflecting the current value of the 'errno' global variable. The actual source line is here: ./authlib/authdaemonlib.c:51: syslog(LOG_CRIT, "authdaemon: s_connect() failed: %m"); If you were running on a French computer, %m might be replaced by whatever the French is for "connection refused" > 03. Checked authmodulelist > [EMAIL PROTECTED] sqwebmail-3.6.2]# cat authmodulelist > authdaemon OK > Any help would be greatly appreciated.. Well, is authdaemond actually running? ps auxwww | grep authdaemond Also, what options did you pass to ./configure when compiling sqwebmail? Regards, Brian.