Welcome to the forums,
That's correct (-e shows values set only on that individual account).
The code is implemented in //depot/main/ZimbraServer/src/java/com/zimbra/cs/account/ProvUtil.java:
Code:
private void doGetAccount(String[] args) throws ServiceException {
boolean applyDefault = true;
int acctPos = 1;
if (args[1].equals("-e")) {
if (args.length > 1) {
applyDefault = false;
acctPos = 2;
} else {
usage();
return;
}
}
dumpAccount(lookupAccount(args[acctPos], true, applyDefault), applyDefault, getArgNameSet(args, acctPos+1));
} (Where applyDefault above = the actual defaultCOS or their customCOS settings based on value of zimbraCOSid.)