Brian
Firstly.. thanks a ton..
It indeed was NOT running..
While editing /var/qmail/bin/qmailctl, I inadvertently
commented out the line starting authdaemond.. and
hence that process never started..
Thanks.. For those who read this posting.. make sure that
the file /var/qmail/bin/qmailctl contains BOTH the lines
start)
..
/usr/local/share/sqwebmail/libexec/authlib/authdaemond start
/usr/local/share/sqwebmail/libexec/sqwebmail/sqwebmaild start
...
;;
Thanks...much obliged..
Glow
----- Original Message -----
From: "Brian Candler" <[EMAIL PROTECTED]>
To: "zanchu_ml_01 @ hotmail_com" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Tuesday, December 02, 2003 7:13 AM
Subject: Re: [sqwebmail] yukon sqwebmaild: authdaemon: s_connect() failed: Connection
refused
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.