Quote:
Originally Posted by mavlenko wow, actually hasn't been removed  but removed checkbox from web admin console
To enable for default COS, do command from zimbra user:
zmprov mcf zimbraXMPPEnabled TRUE
zmprov mc default zimbraFeatureIMEnabled TRUE
zmprov mc default zimbraFeatureInstantNotify TRUE
zmprov mc default zimbraPrefIMAutoLogin TRUE
But it is enable IM for all users in default COS, is there any ability to disable IM for some users from web admin console, or any feature to return IM checkbox into web admin console? |
I am able to disable IM for a user with:
zmprov modifyAccount $ACCOUNT zimbraFeatureIMEnabled FALSE
I see the current status is:
zmprov getAccount $ACCOUNT | grep IM
I you want to disable IM for all users do something like this:
for ACCOUNT in $( zmprov -l gaa ) ; do echo $ACCOUNT ; zmprov modifyAccount $ACCOUNT zimbraFeatureIMEnabled FALSE ; done
Thanks,
Martin