After experiencing the initial problem of a signup confirmation mail not going out, and going through the various posts on that topic, I finally found a fix without having to use a plugin or use pear functions.
In the file /bb-includes/pluggable.php add the following lines at the top:
ini_set("SMTP","mail.YourDomain.com"); //IP or server name for smtp server
ini_set("smtp_port","25");
ini_set('sendmail_from', 'ValidEmailAccount@YourDomain.com');
This worked in my case. I hope this solves other people's problems too.