Just bumping old thread if someone still find the solution. 🙂
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;’) );`