Yes, look in addpost.php around line 780 (not sure, since mine is pretty well hacked up) for:
if ($Mailto){

This is the section that mails a followup to the thread starter if he selects to be notified of any followups. And it is where we get an $EmailBody variable that can be also mailed to the moderators.

Now scroll down to just above:
// ---------------------------------------------
// Update the total post if the post is Approved

and insert the following (forgive its untidyness):


<pre> // pgregg addition
// Send email to o the moderators for this board
$newline = "\n";
if (stristr(PHP_OS,"win")) {
$newline = "\r\n";
}
$EmailBody = $Body;
if ($config['stripcodes']) {
$EmailBody = preg_replace("/<([^>])*>/","",$EmailBody);
}
$mailer = new mailer;
$header = $mailer -> headers();
$subject = "[OSS New Post] ($Board) $postername: $Subject_q";
$msg = "New post from: $postername${newline}Subject: $Subject_q${newline}Board: $Board${newline}${newline}URL: {$config['phpurl']}/showthreaded.php?Cat=$Cat&Board=$Board&Number=$Mnumber$newline${newline}Message:$newline$EmailBody";

$Board_q = addslashes($Board);
$query = "
SELECT Mod_Username, U_Email, U_Name
FROM w3t_moderators, w3t_users
WHERE w3t_moderators.Mod_Username=w3t_users.U_Username AND w3t_moderators.Mod_Board = '$Board_q'
";
$sth_mod = $dbh -> do_query($query);
$modusers = "";
while($rows = $dbh -> fetch_array($sth_mod)) {
list($tmp_moderator, $tmp_modemail, $tmp_modname) = $rows;
if ($tmp_moderator != 'deleteuser') // ignore the "deleteuser" non-human admin user
$modusers .= sprintf("%s _%s_ <%s>, ", $tmp_modname, $tmp_moderator, $tmp_modemail);
}
if (!preg_match("/myusername/", $modusers)) $modusers .= "Paul Gregg _myusername_ <[email protected]>"; // keep me informed also <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" />

$dbh -> finish_sth($rows);
$modusers = preg_replace("/, $/", "", $modusers);
@mail("$modusers", "$subject", $msg, $header);
</pre>

Now, with all posts and followups your moderators will also be emailed.

Paul.