new install - mail error

antpeks

Verified User
Joined
Jun 29, 2006
Messages
26
Location
Antwerpen
Today i did a new install on a CENT OS server.
i added one domain now i everything is working fine everything but the email i got the welcomes mail, stating my login details.

the mail log tells me:

Jan 15 23:32:05 hosted-by vm-pop3d[13767]: User 'joyscape' - failed auth, from=213.219.xx.xx
Jan 15 23:32:10 hosted-by vm-pop3d[13767]: Socket closed from 213.219.xx.xx


what is wrong, or where can i check i am 1000% sure the password is correct but i can't login not even on squirrelmail nor pop3.

Peter
 
There must be something wrong with pop auth on the latest versions
Imap login works fine, but pop works not.
 
Hello

The problem continues

Is there any alternative or older rpm for vm-pop3d?

Directadmin support can you please check?
 
I'm having the same issue. How do you setup IMAP?
 
Last edited:
Just choose imap in your email client
I use eudora but works on thunderbird too
Or install the previous version from tar, works fine

rpm -q da_vm-pop3d
da_vm-pop3d-1.1.7f-2
rpm -e da_vm-pop3d-1.1.7f-2 # uninstall the rpm

wget http://files.directadmin.com/services/da_vm-pop3d-1.1.7f.tar.gz
tar xvzf da_vm-pop3d-1.1.7f.tar.gz
cd da_vm-pop3d-1.1.7f
./configure --prefix=/usr --enable-debug
make
make install

#the vm-pop3d rc script is not instaled so we make a new one

vi /etc/init.d/vm-pop3d
#!/bin/sh
#
# Startup script for vm-pop3d
#
# chkconfig: 345 85 15
# description: vm-pop3d is a POP3 server with virtual domains support
# processname: pop3d

# Source function library.
. /etc/rc.d/init.d/functions

# See how we were called.
case "$1" in
start)
echo -n "Starting vm-pop3d: "
#daemon vm-pop3d --daemon=30 -t 600
daemon vm-pop3d --daemon=30 -t 600

echo
touch /var/lock/subsys/vm-pop3d
;;
stop)
echo -n "Shutting down vm-pop3d: "
killproc vm-pop3d
echo
rm -f /var/lock/subsys/vm-pop3d
;;
status)
status vm-pop3d
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart|status}"
exit 1
esac

exit 0
 
Switch to dovecot :).

The newest versions of SpamBlocker exim.conf file will only work with Dovecot unless someone else modifies them for vm-pop3d/mbox.

Jeff
 
Back
Top