> Anyone ever seen that one? > > I'm doing the install on an amd x86_64 system. Once the install was > complete and the users (all 2 of them) were added, I wanted to send a test > mail. So, I went to squirrel mail and entered my login information. > > However, I got the error message below: > ERROR: connection dropped by IMAP server > > checking the /var/log/qmail/imap4/current file shows the following error > message: > *** note that this is the full error message displayed in the subject line > of this email*** > /usr/lib/courier/authlib/authvchkpw: error while loading shared libraries: > libnsl.so.1: failed to map segments from shared object: Cannot allocate > memory > > of note: I have added the following soft link: > ln -s /usr/lib64/courier/authlib/authvchkpw > /usr/lib/courier/authlib/authvchkpw >
Hi Ron, It looks like you may need to increase your softlimit in your run script. ~~~~ [EMAIL PROTECTED] ~]# cat /var/qmail/supervise/imap4/run #!/bin/sh PASSPROG="/usr/lib/courier/authlib/authvchkpw" HOSTNAME=`hostname --fqdn` rm -rf ./env/*; cat /etc/courier/imapd | /usr/bin/envconv exec /usr/bin/envdir ./env/ \ /usr/bin/softlimit -m 9000000 \ <------HERE-----<<< /usr/bin/tcpserver -v -R -H -l $HOSTNAME 0 143 \ /usr/sbin/imaplogin \ $PASSPROG /usr/bin/imapd Maildir 2>&1 ~~~~ Regards, Nick --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
