Zarafa-client version of clients connected
From Zarafa wiki
(Difference between revisions)
(→Versions by uid) |
Ddebyttere (Talk | contribs) m (Reverted edits by Ynypokizek (talk) to last revision by Msartor) |
| (One intermediate revision not shown) | |
Latest revision as of 09:10, 24 November 2010
To get an overview of the zarafa-client versions connected to the server one can use zarafa-stats and some smart use of GNU tools. This can be useful to check if the auto updater is working in your network. Below are two examples.
Versions by IP
zarafa-stats --session | egrep "0x6743001E|0x674F001E" | awk {'print $2'} | sed '$!N;s/\n/ /' | sort -n | uniq
Versions by user
zarafa-stats --session | egrep "0x674F001E|0x6701001E" | awk {'print $2'} | sed '$!N;s/\n/ /' | sort -n | uniq
Note that it is just the matching key name in the egrep command which is different.