[SOLVED] Looking for reporting output of names, accounts, lists, alias, etc.
Is there any fast/easy way to get a list of users, Distro lists and who's in them, alias' etc.
I just want something that I can output to excel/word etc. (even a text file)
I know I can get this data from LDAP but it's not pretty and not really worth my time to look up a whole bunch of ldap queries.
Big thanks!!!
Moe
Getting storage used per account or domain?
This works beautifully!
Is there a way to print a summary of each account and/or domain to find the total amount of storage used?
Any plans on bringing some kind of reporting functionality to the admin UI in the future?
Get email adresses from all contacts
Mike,
do you know of an efficient way to get:
* for all accounts
* from all address books
* all email addresses (up to 3 per contact)
My current script is not just damn slow, but causes hiccups on the server possibly due to the sheer amount of java processes fired up:
Code:
ACCOUNTS=$($ZMPROV -l gaa)
# FIXME: getting contacts through zmmailbox is damn slow.........
(for acct in $ACCOUNTS; do ( sleep 2 && $ZMMBOX -z -m "$acct" gact email{,1,2} ) ; done) \
| grep -P 'email[123]?:' \
| awk '{ print $2 " custom_sender_whitelisted"}' \
| tr "[:upper:]" "[:lower:]" | sort -u \
>> $CONF/custom_sender_zimbra_whitelist.tmp