diff -urp messaging/messaging_mime_mail/messaging_mime_mail.info /home/denis/downloaded_stuff/drupal6_modules/messaging/messaging_mime_mail/messaging_mime_mail.info
--- messaging/messaging_mime_mail/messaging_mime_mail.info	2008-08-05 13:45:18.000000000 -0400
+++ /home/denis/downloaded_stuff/drupal6_modules/messaging/messaging_mime_mail/messaging_mime_mail.info	2008-08-13 18:49:49.000000000 -0400
@@ -1,15 +1,9 @@
-name = Messaging Mime Mail
+; $Id$
+name = Messaging MimeMail
+package = Messaging
 description = Mail Sending Method: Integration with Mime Mail module
-package = "Messaging"
-dependencies = messaging mimemail
-version = "5.x-1.0-pre-alpha"
-project = "messaging"
-
-
-
-; Information added by drupal.org packaging script on 2008-08-05
-version = "6.x-1.0-rc2"
-core = "6.x"
-project = "messaging"
-datestamp = "1217958318"
-
+core = 6.x
+dependencies[] = messaging
+dependencies[] = mimemail
+version = 6.x-1.0-rc2
+project = messaging
\ No newline at end of file
diff -urp messaging/messaging_mime_mail/messaging_mime_mail.module /home/denis/downloaded_stuff/drupal6_modules/messaging/messaging_mime_mail/messaging_mime_mail.module
--- messaging/messaging_mime_mail/messaging_mime_mail.module	2008-05-08 11:13:01.000000000 -0400
+++ /home/denis/downloaded_stuff/drupal6_modules/messaging/messaging_mime_mail/messaging_mime_mail.module	2008-08-13 18:50:50.000000000 -0400
@@ -1,14 +1,11 @@
 <?php
-/**
- * @file
- * Mime mail using Drupal API. Messaging method plug-in
- */
+// $Id$
 
 /**
  * Implementation of hook_messaging
  */
 function messaging_mime_mail_messaging($op = 'info') {
-  switch($op) {
+  switch ($op) {
     case 'send methods':
       $info['mail'] = array(
         'name' => t('Mime Mail'), // Name for display
@@ -19,21 +16,21 @@ function messaging_mime_mail_messaging($
         'glue' => "<br>", // don't use <br/> nor <br /> for maximum HTML email client compatibility
         'footer' => "<br><br>--",  // Separator for message footer
       );
-      return $info;  
+      return $info;
   }
 }
 
 /**
  * Send mime mail message to user account
- * 
+ *
  * @param $destination
  *   Array of e-mails
  * @param $message
  *   Message array
  */
 function messaging_mime_mail_send($destination, $message, $params = array()) {
-  
+
   $params = messaging_mail_params($message, $params);
-  
+
   return mimemail($params['from'], $destination, $message['subject'], $message['body'], NULL, $params['headers'], NULL, array(), $params['mailkey']);
 }
diff -urp messaging/messaging_phpmailer/messaging_phpmailer.info /home/denis/downloaded_stuff/drupal6_modules/messaging/messaging_phpmailer/messaging_phpmailer.info
--- messaging/messaging_phpmailer/messaging_phpmailer.info	2008-08-05 13:45:18.000000000 -0400
+++ /home/denis/downloaded_stuff/drupal6_modules/messaging/messaging_phpmailer/messaging_phpmailer.info	2008-08-13 18:41:26.000000000 -0400
@@ -1,11 +1,8 @@
-; $Id: messaging_phpmailer.info,v 1.1.2.1 2008/02/14 20:20:13 m3avrck Exp $
+; $Id$
 name = Messaging PHPMailer
+package = Messaging
 description = Mail Sending Method: Integration with Drupal mail API for HMTL Mail
-package = "Messaging"
-dependencies = messaging
-; Information added by drupal.org packaging script on 2008-08-05
-version = "6.x-1.0-rc2"
-core = "6.x"
-project = "messaging"
-datestamp = "1217958318"
-
+core = 6.x
+dependencies[] = messaging
+version = 6.x-1.0-rc2
+project = messaging
\ No newline at end of file
diff -urp messaging/messaging_phpmailer/messaging_phpmailer.install /home/denis/downloaded_stuff/drupal6_modules/messaging/messaging_phpmailer/messaging_phpmailer.install
--- messaging/messaging_phpmailer/messaging_phpmailer.install	2008-02-14 15:20:13.000000000 -0500
+++ /home/denis/downloaded_stuff/drupal6_modules/messaging/messaging_phpmailer/messaging_phpmailer.install	2008-08-13 18:19:37.000000000 -0400
@@ -1,4 +1,5 @@
 <?php
+// $Id$
 
 /**
  * Implementation of hook_install()
diff -urp messaging/messaging_phpmailer/messaging_phpmailer.module /home/denis/downloaded_stuff/drupal6_modules/messaging/messaging_phpmailer/messaging_phpmailer.module
--- messaging/messaging_phpmailer/messaging_phpmailer.module	2008-05-21 12:32:17.000000000 -0400
+++ /home/denis/downloaded_stuff/drupal6_modules/messaging/messaging_phpmailer/messaging_phpmailer.module	2008-08-13 18:18:40.000000000 -0400
@@ -1,15 +1,11 @@
 <?php
-/**
- * @file
- * HTML Mail using PHPMailer. Messaging method plug-in.
- */
-
+// $Id$
 
 /**
  * Implementation of hook_messaging
  */
 function messaging_phpmailer_messaging($op = 'info') {
-  switch($op) {
+  switch ($op) {
     case 'send methods':
       $info['html_mail'] = array(
         'name' => t('HTML Mail'),
@@ -34,7 +30,7 @@ function messaging_phpmailer_messaging($
  *   Message array
  */
 function messaging_phpmailer_send($destination, $message, $params = array()) {
-  
+
   $params = messaging_mail_params($message, $params);
 
   return messaging_phpmailer_drupal_mail($params['mailkey'], $destination, $message['subject'], $message['body'], $params['from'], $params['headers']);
