I have had several resellers ask for two things...
1) A printable Email Account list by Domain
2) A printable account/domain list by owner/reseller
Anyone got any simple ideas on this?
Thanks in advance!
I have had several resellers ask for two things...
1) A printable Email Account list by Domain
2) A printable account/domain list by owner/reseller
Anyone got any simple ideas on this?
Thanks in advance!
I'm also interested in utilizing a list like this...is it possible?
cPanel.net Support Ticket Number:
Again, anyone know of a way to list all email accounts on the server by domain?
Thanks.
cPanel.net Support Ticket Number:
Here is a shell I use. Execute as root.
cPanel.net Support Ticket Number:# get the emails accounts for each domain
cd /home
for i in `ls`
do
DOM=`grep $i /var/named/* | grep Zone | awk '{print $5}'`
if [ $DOM ]
then
echo Domain: $DOM
cd /home/$i/mail
find . -type d -maxdepth 1 -exec ls -ld {} \;| awk -F"./" '{print $2}'
echo "-----------------------------------------------"
fi
done
cPanel.net Support Ticket Number:
-Albert
I'm unable to get this script to work correctly on my server. Is anyone else using this script with the proper results?
Thanks for your help...
cPanel.net Support Ticket Number:
The same script is working perfect for me. It displayed all the email ids for each domain.Originally posted by gsbe
I'm unable to get this script to work correctly on my server. Is anyone else using this script with the proper results?
Thanks for your help...
cPanel.net Support Ticket Number:
Thx asmithjr.
cPanel.net Support Ticket Number:
:: Anand ::
ssh root@
who the hell is root ???
Cpanelappz Support Forums are up now. Register Today
http://forums.cpanelappz.com
WHM/cPanel API : http://whmapi.cpanelappz.com
Cpanel Login Script : www.cpanelappz.com/cpanel-login-script.htm
Exiscan+Clam+Exim Auto Installer : www.cpanelappz.com
Guys !!!
Sorry to bump this old thread, but i had a very similar request but with a twist.
I need to find out the total number of email id's on the server for all the domains hosted on a server.
Can any one assist me here ?
Thank you