Re: [vchkpw] Lazy admin seeks ezmlm script set

2006-02-21 Thread Tom Collins
On Feb 21, 2006, at 10:07 AM, Alex Borges wrote: Hey guys... im just as lazy as you guys, probably more so... So, i was wondering if any of you have a script that will give me all the ezmlm lists for a vpopmail domain. QmailAdmin http://qmailadmin.sf.net/ will show them in a web interface...

Re: [vchkpw] Lazy admin seeks ezmlm script set

2006-02-21 Thread Alex Borges
On Tue, 2006-02-21 at 12:07 -0600, Alex Borges wrote: Hey guys... im just as lazy as you guys, probably more so... So, i was wondering if any of you have a script that will give me all the ezmlm lists for a vpopmail domain. Mhm... you guys take too long: #!/bin/bash CWDmine=$(pwd) cd

Re: [vchkpw] Lazy admin seeks ezmlm script set

2006-02-21 Thread David Chaplin-Loebell
Alex Borges wrote: Mhm... you guys take too long: #!/bin/bash CWDmine=$(pwd) cd /home/vpopmail/domains/$1 It would be better to use cd `vdominfo -d $1` in case of hashed domains. ls .qmail-* |egrep ^.qmail-[^-]*$ |sed -r -e 's/^.qmail-(.*)$/\1/g' cd $CWDmine