LOGIN FAILED

2001-02-27 Thread fred

Hello

I use qmail-1.03 on a redhat 7.0
I have followed all the instruction in the "life with qmail" doc.
TEST.delivery and TEST.receive are good.
I can send and read local messages but I am unable to use virtualdomain.

My dns and Mx  are good.
It seems to be an authentification problem.

When I try to get message using telnet I have errors: 

[fred@localhost fred]$ telnet ip_of_mailserver 110
Trying ip_of_mailserver...
Connected to ip_of_mailserver.
Escape character is '^]'.
+OK Hello there.
USER fpinatel@my_virtualdomain
+OK Password required.
PASS mypass
-ERR Login failed.
QUIT
+OK Better luck next time.
Connection closed by foreign host.
[fred@localhost fred]$ 

And I have errors in my log files :

Feb 27 18:21:35 www pop3login: Connection, ip=[:::192.168.11.3]
Feb 27 18:21:57 www pop3login: LOGIN FAILED, ip=[:::192.168.11.3]
Feb 27 18:22:09 www pop3login: Disconnected, ip=[:::192.168.11.3]
 
Can someone help me.
Thanks for your help.
 
__
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif





RE: LOGIN FAILED

2001-02-27 Thread schoon

Ah, isn't the username simply just that, without any hostname appended??
Just a thought I use pullmail to pop stuff from a qmail server and
shove it into an aging Exchange system, and the username I supply
doesn't include the @HOSTNAME .

HTH

.mark

>--
>From:  fred[SMTP:[EMAIL PROTECTED]]
>Sent:  Tuesday, February 27, 2001 9:30 AM
>To:[EMAIL PROTECTED]
>Subject:   LOGIN FAILED
>
>Hello
>
>I use qmail-1.03 on a redhat 7.0
>I have followed all the instruction in the "life with qmail" doc.
>TEST.delivery and TEST.receive are good.
>I can send and read local messages but I am unable to use virtualdomain.
>
>My dns and Mx  are good.
>It seems to be an authentification problem.
>
>When I try to get message using telnet I have errors: 
>
>[fred@localhost fred]$ telnet ip_of_mailserver 110
>Trying ip_of_mailserver...
>Connected to ip_of_mailserver.
>Escape character is '^]'.
>+OK Hello there.
>USER fpinatel@my_virtualdomain
>+OK Password required.
>PASS mypass
>-ERR Login failed.
>QUIT
>+OK Better luck next time.
>Connection closed by foreign host.
>[fred@localhost fred]$ 
>
>And I have errors in my log files :
>
>Feb 27 18:21:35 www pop3login: Connection, ip=[:::192.168.11.3]
>Feb 27 18:21:57 www pop3login: LOGIN FAILED, ip=[:::192.168.11.3]
>Feb 27 18:22:09 www pop3login: Disconnected, ip=[:::192.168.11.3]
> 
>Can someone help me.
>Thanks for your help.
> 
>_
>_
>ifrance.com, l'email gratuit le plus complet de l'Internet !
>vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
>http://www.ifrance.com/_reloc/email.emailif
>
>
>



Re: LOGIN FAILED

2001-02-27 Thread Jerry Lynde

At 10:30 AM 2/27/2001, fred wrote:
>Hello
>
>I use qmail-1.03 on a redhat 7.0
>I have followed all the instruction in the "life with qmail" doc.
>TEST.delivery and TEST.receive are good.
>I can send and read local messages but I am unable to use virtualdomain.
>
>My dns and Mx  are good.
>It seems to be an authentification problem.
>
>When I try to get message using telnet I have errors:
>
>[fred@localhost fred]$ telnet ip_of_mailserver 110
>Trying ip_of_mailserver...
>Connected to ip_of_mailserver.
>Escape character is '^]'.
>+OK Hello there.
>USER fpinatel@my_virtualdomain
>+OK Password required.
>PASS mypass
>-ERR Login failed.
>QUIT
>+OK Better luck next time.
>Connection closed by foreign host.
>[fred@localhost fred]$
>
>And I have errors in my log files :
>
>Feb 27 18:21:35 www pop3login: Connection, ip=[:::192.168.11.3]
>Feb 27 18:21:57 www pop3login: LOGIN FAILED, ip=[:::192.168.11.3]
>Feb 27 18:22:09 www pop3login: Disconnected, ip=[:::192.168.11.3]
>
>Can someone help me.
>Thanks for your help.


Hi fred,

checkpassword needs to run as root..here is a copy of my run file for 
qmail-pop3d
the important parts (not that it's not all important) are -u0 -g0

#!/bin/sh
exec /usr/local/bin/softlimit -m 200 \
 /usr/local/bin/tcpserver -v -R -u0 -g0 0 110 
/var/qmail/bin/qmail-popup pdc.diligence.com \
 /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1


Hope that helps,

Jer