--- abuse.install	2007-03-30 10:38:06.000000000 -0700
+++ abuseNew.install	2007-08-05 03:21:10.000000000 -0700
@@ -77,6 +77,16 @@ function abuse_install() {
   } else {
     drupal_set_message('Retry from the start (remove abuse sequence and abuse reasons table)');
   }
+  
+  $allow_subject = "Flagged Item Allowed";
+  $allow_body = "Dear !name,\n\nYou reported an item on !date that was found to be acceptable under our posting policies.  You may view this item here !link.\n\nYour Report:\nReason: !reason\nDescription: !report\n\nThanks for your efforts to help us keep our website clean and friendly!\n-the team";
+  $remove_subject = "Flagged Item Removed";
+  $remove_body = "Dear !name,\n\nYou reported an item on !date that was found to be un-acceptable under our posting policies and thus has been removed from our site.\n\nYour Report:\nReason: !reason\nDescription: !report\n\nThanks for your efforts to help us keep our website clean and friendly!\n-the team";
+  
+  variable_set('abuse_alerter_allow_subject', $allow_subject);
+  variable_set('abuse_alerter_allow_body', $allow_body);
+  variable_set('abuse_alerter_remove_subject', $remove_subject);
+  variable_set('abuse_alerter_remove_body', $remove_body);  
 }
 
 function abuse_update_1() {
@@ -116,4 +126,9 @@ function abuse_uninstall() {
   db_query('DROP TABLE IF EXISTS {abuse_status}');
   db_query('DROP TABLE IF EXISTS {abuse_warnings}');
   db_query('DROP TABLE IF EXISTS {abuse_reasons}');
+  
+  variable_del('abuse_alerter_allow_subject');
+  variable_del('abuse_alerter_allow_body');
+  variable_del('abuse_alerter_remove_subject');
+  variable_del('abuse_alerter_remove_body');
 }
\ No newline at end of file
