ruby on rails webmail client
Go to file
2009-02-08 05:07:53 +10:00
app fix navigation links at contacts page 2009-02-08 05:07:53 +10:00
components Contacts page 2009-02-08 04:46:42 +10:00
config fix navigation links at contacts page 2009-02-08 05:07:53 +10: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 init import from old mailr project (http://svn.littlegreen.org/mailr/trunk) 2009-01-08 05:27:12 +10:00
locale init import from old mailr project (http://svn.littlegreen.org/mailr/trunk) 2009-01-08 05:27:12 +10:00
public update to rails 2.2.2 2009-01-08 05:55:58 +10: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 sending email 2009-02-06 01:55:24 +10:00
.gitignore utf8 in folders name 2009-01-09 06:44:14 +10: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 init import from old mailr project (http://svn.littlegreen.org/mailr/trunk) 2009-01-08 05:27:12 +10:00
README_LOCALIZE init import from old mailr project (http://svn.littlegreen.org/mailr/trunk) 2009-01-08 05:27:12 +10:00

Installation Guide
Requirements

    * Ruby 1.8.2 or higher
    * Rails 0.14.2
    * MySQL or PostgreSQL with Ruby bindings
    * Ruby-GetText? 0.8.0 or higher (http://ponx.s5.xrea.com/hiki/ruby-gettext.html) 

Installation

   1. Checkout the source code
   2. Create database called mailr. Create the database schema using db/schema.mysql.sql or db/schema.pgsql.sql
   3. Change the config/database.yml to reflect your newly created database configuration
   4. 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


   5. Start your web server and login in the application with your IMAP user and password.