Yep, I'm working on it. Right now it is displaying what's reported from the VA. It should be hours: minutes, but I htink some report seconds as well, trying to sort that out. Thanks!
Find this line here:
http://github.com/nshahzad/phpVMS/blob/master/core/classes/Util.class.php#L207
The ob_start(), and comment that out. Also, are you using SMTP?
Config sounds possible. I'm not sure.. it's sent one by one, but all within a span of a second. They all use the same mechanism (Util::SendMail()). Could it be the mail server seeing a huge spike in mail sends, and just not sending it out?
For bbcode, one avenue is a bbcode parsing plugin.
http://www.christian-seiler.de/projekte/php/bbcode/index_en.html
That also has links to other parses. It should be relatively trivial to include it (create a folder in core/lib where external libraries live, and then include it in the module). PECL has a BB code parser but I wouldn't rely on PEAR/PECL being available on all servers
To get the hour/minute you can do:
<?php
$time = explode(':', $schedule->deptime);
$hour = $time[0];
$minute = $time[1];
Something like that should work