View Single Post
  #7 (permalink)  
Old 06-12-2009, 04:15 AM
uxbod uxbod is offline
Moderator
 
Posts: 7,911
Default

Code:
for user in `cat yourfile.csv | awk -F, '{ print $1 }'`
do
  zmprov ma ${user} zimbraPasswordMustChange FALSE
done
This requires the users email address to be in position one of the CSV file.
__________________
Reply With Quote