List all existing distribution list and the respective members
Revision as of 12:18, 6 June 2020 by Heera Singh Koranga (talk | contribs)
Contents
List all existing distribution lists and the respective members
Problem
How to list all existing distribution lists and their respective members from the command line?
Solution
Method 1:
Run the given script on ZCS server to list the existing distribution lists and members of respective distribution lists :
for i in `zmprov gadl` ; do zmprov gdl $i zimbraMailAlias zimbraMailForwardingAddress ; done > /tmp/dlresult
Result would be saved in /tmp/dlresult file.
Method 2:
Run following command, it will print all distribution lists with its members on screen :
zmprov gadl -v
Submitted by: Aarti Shah |