List of Quotas on every account

We have just realised that email accounts have been being created without a quota set. Is there a way to get a list of all the quota’s set on all accounts?

Hello,

Not sure if I understand well what you are asking for so:

1/ you may use the following method to get a TSV output for some data related to all hosted accounts

2/ processing the CLI data from account > config quotas context

For example you may download the run-cli.py script (from our Automation Tools page) and execute something like:

/opt/axigen/scripts/run-cli.py "foreach domain|foreach account|config quotas|show|back" | grep ":config quotas\|^mboxCount\|^messageCount\|^messageSize\|^totalMessage"

that will provide information about :

  • mboxCount = maximum number of folders
  • messageCount = maximum number of messages in a folder
  • messageSize = maximum size (in KB) of messages in a folder
  • totalMessageCount = maximum number of messages in all folders
  • totalMessageSize = maximum size (in KB) of all messages in all folders

HTH,
Ioan