ruby on rails webmail client
Go to file
2011-04-01 13:26:21 -03:00
app Translate common folder names 2011-04-01 08:23:32 -03:00
config Translate common folder names 2011-04-01 08:23:32 -03: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 Using chunks to get large email lists 2011-04-01 13:26:21 -03: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
Rakefile init import from old mailr project (http://svn.littlegreen.org/mailr/trunk) 2009-01-08 05:27:12 +10:00
README Fix send emails 2011-03-27 21:28:10 -03:00

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 Use it