Re: [vchkpw] Vpopmail script

2003-12-29 Thread Eduardo M. Bragatto
On Monday 29 December 2003 16:06, Tom Tu wrote: > Does anyone have a script that will add or delete email accounts in > vpopmail given a static file with the email address of each user we want to > add or delete? Written for the first time at this e-mail, I've never run this before: ---

Re: [vchkpw] Vpopmail script

2003-12-29 Thread Clayton Weise
If you compiled vpopmail with the ability to learn passwords you can just add a -n flag to your vadduser command "vadduser -n $f" and it will add the user with a blank password, which allows it to be "learned." -Clayton Kleiner, Peter wrote: Does anyone have a script that will add or delete e

RE: [vchkpw] Vpopmail script

2003-12-29 Thread Kleiner, Peter
> Does anyone have a script that will add or delete email > accounts in vpopmail > given a static file with the email address of each user we > want to add or > delete? Do you mean something like # for f in `cat file.txt` ; do /home/vpopmail/bin/vadduser $f ; done Then you'd have to manage th