Unable to login

Eric

Verified User
Joined
Mar 25, 2004
Messages
116
xinetd is running
1. Created account test from Create POP3 Mail Account
2. Tried to login to SquirrelMail test@mydomain.tld
3. It told me Unknown user or password incorrect

/var/log/messages just says Login failed user=..........

Please help; thanks.
Eric
 
Code:
tcp	0	0 0.0.0.0:143	0.0.0.0:*	LISTEN	808/xinetd

Code:
cat /etc/virtual/mydomain.tld/passwd
test:15nJ/yunaGrV2

What else should I check?
 
Hello,

If the xinetd is in fact listening, which it appers to be, then it's possible that another binary is in the place of the one included with DA.

Try this:

rm -f /usr/sbin/imapd
cd /usr/local/directadmin/scripts
./imapd.sh

John
 
I don't think so...
The command below showed nothing; I believe they're identical.
Code:
comm -3 /usr/sbin/imapd /usr/local/directadmin/scripts/packages/imapd
 
This is odd...
2 domains, one is mydomain.tld, the other is blah.tld
[email protected] shows up; [email protected] doesn't.
I can login using [email protected], but [email protected] just outputs the "Unknown user or password incorrect" error message.

Nothing under:
ls -l /var/spool/virtual/mydomain.tld

A file under:
ls -l /var/spool/virtual/blah.tld
-rw-rw---- 1 admin mail 548 Mar 29 22:15 eric

ls -l /home/admin/imap/mydomain.tld
ls: /home/admin/imap/mydomain.tld: No such file or directory

ls -l /home/admin/imap/blah.tld
drwx------ 3 admin admin 4.0K Mar 29 02:45 eric
 
Last edited:
Yes, it's in both files. The only difference I've found is that mydomain.tld is owned by admin (see below), and blah.tld is owned by the username I specified in setup.sh:
ADMIN_USER=admin_username

cat /etc/virtual/domains
mydomain.tld
blah.tld

cat /etc/virtual/domainowners
mydomain.tld: admin
blah.tld: admin_username
 
Problem fixed, I manually edited /etc/virtual/domainowners and changed admin to admin_username
 
Back
Top