I'm not messing with phpBB, it's been a few years since I used it.
My issue are spambots trawling through contact forms, auto-filling them and sending crap to the db. I know they do it to inject multiple recipients into the message to send out spam but was wondering if the visual confirmation box would stop it. I can halt the email injection by scrapping the mail at source if a cc:/bcc: etc appears, such as:
if(preg_match("/(%0A|%0D|\r\n|\r|\n|content-type:|from:|to:|cc:|bcc:)/i", $_POST["message"])) {
tellthemtofuckoff(); }
etc...
I'm guessing you're not gonna be the best person to ask about this

maybe Simon will have a use!