Hi Jos�, > How can i convert /etc/shadow to a vpasswd file type.??
Use a shell script like...
#!/bin/sh
for U in `awk -F : '{ print $1 }' < /etc/passwd` ; do
echo -n "$U - "
/home/vpopmail/bin/vadduser -r [EMAIL PROTECTED]
done
This won't convert the passwords; however, as most users will use these
passwords over unencrypted connections like POP3 or IMAP4, it's a good
idea to force them to use different passwords for mail than for, let's
say, SSH connections.
Jonas
