Index: modules/og2list/og2list.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/og2list/og2list.module,v
retrieving revision 1.84
diff -u -F^f -r1.84 og2list.module
--- modules/og2list/og2list.module	7 Aug 2006 19:04:50 -0000	1.84
+++ modules/og2list/og2list.module	9 Aug 2006 22:32:54 -0000
@@ -331,6 +331,9 @@ function og2list_nodeapi(&$node, $op, $a
         db_query('UPDATE {og2list_outgoing_arguments} a INNER JOIN {og2list_outgoing_content} c ON a.mid = c.mid SET a.status = %d WHERE c.is_node = 1 AND c.id = %d AND a.status = 6', 1, $node->nid);
         db_query('UPDATE {og2list_outgoing_recipients} r INNER JOIN {og2list_outgoing_content} c ON r.mid = c.mid SET r.status = %d WHERE c.is_node = 1 AND c.id = %d AND r.status = 6', 1, $node->nid);
       }
+      if (isset($node->recipient) && strlen($node->recipient)) {
+          db_query("INSERT INTO {og2list_groups} (nid, recipient, status) VALUES (%d, '%s', 1)", $node->nid, $node->recipient);
+      }
       break;
   }
 }
