ruby on rails webmail client
Go to file
2011-07-22 21:58:59 +02:00
app change core controller to user 2011-07-22 21:58:59 +02:00
arts form scratch 2011-07-21 20:20:15 +02:00
config change core controller to user 2011-07-22 21:58:59 +02:00
db form scratch 2011-07-21 20:20:15 +02:00
doc form scratch 2011-07-21 20:20:15 +02:00
lib/tasks form scratch 2011-07-21 20:20:15 +02:00
public form scratch 2011-07-21 20:20:15 +02:00
script works but need some cleanup 2011-06-24 23:48:08 +02:00
test form scratch 2011-07-21 20:20:15 +02:00
themes/olive change core controller to user 2011-07-22 21:58:59 +02:00
vendor/plugins form scratch 2011-07-21 20:20:15 +02:00
.gitignore form scratch 2011-07-21 20:20:15 +02:00
AUTHORS form scratch 2011-07-21 20:20:15 +02:00
config.ru form scratch 2011-07-21 20:20:15 +02:00
Gemfile form scratch 2011-07-21 20:20:15 +02:00
Gemfile.lock form scratch 2011-07-21 20:20:15 +02:00
Rakefile form scratch 2011-07-21 20:20:15 +02:00
README.markdown form scratch 2011-07-21 20:20:15 +02:00
UNLICENSE form scratch 2011-07-21 20:20:15 +02:00

Introduction

Mailr is a IMAP mail client based on Ruby on Rails platform.

NOTE All path and filenames are based on Rails.root directory.

Requirements

In Rails 3 all dependencies should be defined in file Gemfile. All needed gems can be installed using bundler.

Installation procedure

  • Checkout the source code.

  • Install all dependiences. Use bundler for that.

  • Prepare config/database.yml file (see config/database.yml.example). Check if proper gems (sqlite3/mysql/postgresql) are defined in Gemfile and installed.

  • Migrate database (rake db:migrate)

  • Start rails server if applicable

  • Point Your browser to application URL: For local access: http://localhost:3000 For remote access: http://some_url/mailr

  • Use it.