View Single Post
  #4 (permalink)  
Old 07-02-2009, 08:47 AM
cPanelEricE's Avatar
cPanelEricE cPanelEricE is offline
cPanel Staff (Administrator)
 
Join Date: Nov 2007
Location: Texas
Posts: 170
cPanelEricE is on a distinguished road
Howdy,

Easy enough:

Code:
cd /home(x)/user/mail/; ls -a|grep @|awk '{print $2}' FS="."
should do most of it. The only thing that might be off is the tld that you're using so in my case I added it to this:
Code:
 cd /home2/fishmail/mail/; ls -a|grep @|awk '{print $2}' FS="."|replace _net .net
you'll likely need to do the same for your .tld.
__________________
--Eric(E)

Using Enkompass compared to cPanel is like going to a MacDonald’s in France, sure they’ve got the same things we have over here, but it’s a little different.
Reply With Quote