ruby on rails webmail client
 
 
 
 
Go to file
Wojciech Todryk 7145c6486d some fix for locale,new polish locale 2011-06-18 13:27:44 +02:00
app some fix for locale,new polish locale 2011-06-18 13:27:44 +02:00
config some fix for locale,new polish locale 2011-06-18 13:27:44 +02:00
db message index 2009-01-08 06:37:17 +10:00
doc init import from old mailr project (http://svn.littlegreen.org/mailr/trunk) 2009-01-08 05:27:12 +10:00
lib some fix for locale,new polish locale 2011-06-18 13:27:44 +02:00
public Fix choose contact 2011-03-31 17:59:22 -03:00
script update to rails 2.2.2 2009-01-08 05:55:58 +10:00
test init import from old mailr project (http://svn.littlegreen.org/mailr/trunk) 2009-01-08 05:27:12 +10:00
vendor will_paginate added to plugins 2009-02-10 04:13:08 +10:00
.gitignore migrate mailr 2.2.2 to 2.3.2 2009-07-30 13:01:48 +08:00
CHANGELOG init import from old mailr project (http://svn.littlegreen.org/mailr/trunk) 2009-01-08 05:27:12 +10:00
MIT-LICENSE init import from old mailr project (http://svn.littlegreen.org/mailr/trunk) 2009-01-08 05:27:12 +10:00
README some fix for locale,new polish locale 2011-06-18 13:27:44 +02:00
Rakefile init import from old mailr project (http://svn.littlegreen.org/mailr/trunk) 2009-01-08 05:27:12 +10:00

README

Installation Guide
Requirements

    * Ruby 1.8.7
    * Rails 2.3.2

Installation

   1. Checkout the source code
   2. If you need to override some of the default constants used in the application take a look at config/default_site.rb. Then create config/site.rb that contains only the keys which you want to override. Example content of config/site.rb is:

   module CDF

   LOCALCONFIG = {
     :imap_server => 'your.imap.server'
   }
   end

  3. Configure SMTP settings
    # initializers/smtp_settings.rb
      ActionMailer::Base.smtp_settings = {
      :address => "mail.example.com.py",
      :port => 26,
      :authentication => :plain,
      :enable_starttls_auto => true,
      :user_name => "emilio@example.com.py",
      :password => "yourpass"
    }

  4. Prepare config/database.yml file (see config/database.yml.example)
  5. Migrate database (rake db:migrate)

  6. Use it