There is a dedicated page for mutt patches.
MySQL doesn't measure query times with sub-second precision, but for high-volume transaction-based production systems, accurate reporting of slow (less than one second) queries is critical. I have created a patch to correct this for the following versions:
There are some issues in omail-admin (1.2rc1) resulting from differences between vmailmgr 0.96.9 and 0.97: 1. aliases now have home directories (which are empty), but omail-admin assumed this was how aliases and mailbox users were distinguished 2. adduser3() is now used instead of adduser2() so that the alias/user distinction is explicit 3. Resulting from (1) above, the catchall address is detected correctly (in the default case). This should probably be fixed to deal with changes to the vmailmgr default-username value. In addition, these additional features are desirable: 1. a vstat() wrapper has been added to vmail.inc to support collection of live mailbox usage statistics 2. a new parameter, config_mailbox_recursion (default 0), is used to support the previously posted vmailmgr 0.97 patch that adds subdirectory stats collection 3. The mailbox user list contains a new column, Size, which is used to display the mailbox statistics collected via vstat(). Although new/seen/unseen stats are available internally, only the sum (total mailbox size) is displayed in this column. Warning: This can be slow (and is inefficient) with very large numbers of mailboxes. 4. The Size column can be used to sort by mailbox size. Depending on the config_mailbox_recursion setting, this may mean that the sort is based on INBOX sized instead of total account disk usage.This patch implements the above changes.