Hello lottiejam,
Before the plugin author solves the problem, you can disable sending activation email to new registrant by adding code below into your theme/child theme functions.php
/* disable sending activation emails */
/* place this in your child theme's function.php */
add_filter( 'bp_core_signup_send_activation_key', create_function('','return false;') );
Or I also put the code on Pastebin:
https://pastebin.com/h6hCidML
Thanks,
Budi Nusyirwan