<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>README.markdown</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -16,9 +16,19 @@
 
 5. Copy config/global_config.yml.example to config/global_config.yml and edit it to reflect your application customized configurations.
 
-6. Copy config/initializers/mail.rb.example to config/initializers/mail.rb and edit it to reflect your mail configurations.
-
-7. Copy config/environments/production.rb.example to config/environments/production.rb and edit `asset_host` in order to reflects the name of the production asset server.
+6. Copy config/environments/production.rb.example to config/environments/production.rb and edit `asset_host` in order to reflects the name of the production asset server.
+
+7. Configure your mail settings inside of production.rb ie:
+
+    ActionMailer::Base.delivery_method = :smtp
+    ActionMailer::Base.smtp_settings = {
+      :address =&gt; &quot;mail.luvfoo.com&quot;,
+      :port =&gt; 25,
+      :domain =&gt; &quot;luvfoo.com&quot;,
+      :authentication =&gt; :login,
+      :user_name =&gt; &quot;demo@luvfoo.com&quot;,
+      :password =&gt; &quot;sweet&quot;
+    }
 
 8. You will need to install some 3th party softwares. Above, there is the command to install them in Ubuntu and other Debian-based Linux distribuitions:
 </diff>
      <filename>INSTALL</filename>
    </modified>
    <modified>
      <diff>@@ -24,3 +24,13 @@ config.action_view.cache_template_loading            = true
 # needed for Avatar::Source::RailsAssetSource
 config.action_controller.asset_host = &quot;http://try.luvfoo.com&quot;
 
+
+ActionMailer::Base.delivery_method = :smtp
+ActionMailer::Base.smtp_settings = {
+  :address =&gt; &quot;mail.luvfoo.com&quot;,
+  :port =&gt; 25,
+  :domain =&gt; &quot;luvfoo.com&quot;,
+  :authentication =&gt; :login,
+  :user_name =&gt; &quot;demo@luvfoo.com&quot;,
+  :password =&gt; &quot;sweet&quot;
+}</diff>
      <filename>config/environments/production.rb.example</filename>
    </modified>
    <modified>
      <diff>@@ -171,13 +171,11 @@ class GroupsControllerTest &lt; Test::Unit::TestCase
 
     end        
 
-    should &quot;not delete group only mark it 'deleted'&quot; do
-      assert_no_difference &quot;Group.count&quot; do
+    should &quot;delete a group&quot; do
+      assert_difference &quot;Group.count&quot;, -1 do
         group = Factory(:group, :creator =&gt; @admin_user)
         delete :destroy, { :id =&gt; group.to_param }
         assert_redirected_to groups_url
-        group.reload
-        assert group.visibility == Group::DELETED
       end
     end
     </diff>
      <filename>test/functional/groups_controller_test.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>README.mkdn</filename>
    </removed>
    <removed>
      <filename>config/initializers/mail.rb.example</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>8a01718764775edf31e42e3e639a8ea96fd54898</id>
    </parent>
  </parents>
  <author>
    <name>Justin Ball</name>
    <email>justinball@gmail.com</email>
  </author>
  <url>http://github.com/jbasdf/luvfoo/commit/056437d6dad9e579547c744f01db5d75ca95f9f6</url>
  <id>056437d6dad9e579547c744f01db5d75ca95f9f6</id>
  <committed-date>2009-03-26T14:10:23-07:00</committed-date>
  <authored-date>2009-03-26T14:10:23-07:00</authored-date>
  <message>documentation changes</message>
  <tree>348f2b381c37fe48b8fe8379387b5074d2c08eb2</tree>
  <committer>
    <name>Justin Ball</name>
    <email>justinball@gmail.com</email>
  </committer>
</commit>
