Remove All Emailed Contacts

Revision as of 16:17, 5 August 2010 by Richardteachout (talk | contribs) (Script to remove all "/Emailed Contacts" from all users)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Here is a simple script I used to remove all the "/Emailed Contacts" folders for all the users on the system. We in-advertedly left the Automatic adding of contacts enabled in our COS (Admin GUI under CoS -> Preferences) And after disabling it, we needed to remove all the emailed contacts, so our GAL would work properly. Here is my quick script on how I did it.

#!/bin/bash if [ `whoami` != "zimbra" ]; then echo "You must be the zimbra user to run this script." exit 0 fi for i in `zmprov -l gaa` do echo "Emptying the - /Emailed Contacts - folder for $i" zmmailbox -z -m $i emptyFolder "/Emailed Contacts" done

Jump to: navigation, search