Index: bb-plugins/akismet.php
===================================================================
--- bb-plugins/akismet.php	(revision 3485)
+++ bb-plugins/akismet.php	(working copy)
@@ -248,7 +248,8 @@
 				'comment_author_email' =>  bb_get_user_email( $user->ID ),
 				'comment_author_url' => get_user_link( $user->ID ),
 				'comment_content' => $bb_post->post_text,
-				'comment_date_gmt' => $bb_post->post_time
+				'comment_date_gmt' => $bb_post->post_time,
+				'user_role' => implode( ',', $bb_current_user->roles )
 			);
 			break;
 
@@ -272,7 +273,8 @@
 				'comment_author_email' =>  bb_get_user_email( $user->ID ),
 				'comment_author_url' => get_user_link( $user->ID ),
 				'comment_content' => $user->occ . ' ' . $user->interests,
-				'comment_date_gmt' => $user->user_registered
+				'comment_date_gmt' => $user->user_registered,
+				'user_role' => implode( ',', $bb_current_user->roles )
 			);
 			break;
 
@@ -292,7 +294,8 @@
 				'comment_author' => bb_get_current_user_info( 'name' ),
 				'comment_author_email' => bb_get_current_user_info( 'email' ),
 				'comment_author_url' => bb_get_current_user_info( 'url' ),
-				'comment_content' => $submit
+				'comment_content' => $submit,
+				'user_role' => implode( ',', $bb_current_user->roles )
 			);
 			if ( isset( $_POST['topic_id'] ) ) {
 				$_submit['permalink'] = get_topic_link( $_POST['topic_id'] ); // First page
