ruby on rails webmail client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Wojciech Todryk b63cc2bd14 deps update 10 years ago
app migrate script fo jquery 10 years ago
arts rails 3.2.2 added tweeter bootstrap 11 years ago
config docs updated 10 years ago
db devel 11 years ago
doc dev cont 11 years ago
lib fixes 11 years ago
log dev cont 11 years ago
public favicon size 10 years ago
script works but need some cleanup 12 years ago
test dev cont 11 years ago
vendor dev cont 11 years ago
.gitignore devel 11 years ago
AUTHORS.markdown fixes 11 years ago
CHANGES.markdown docs updated 10 years ago
Gemfile deps update 10 years ago
Gemfile.lock deps update 10 years ago
README.markdown Update README.markdown 11 years ago
Rakefile dev cont 11 years ago
TODO.markdown info update 11 years ago
UNLICENSE.markdown fixes 11 years ago
config.ru dev cont 11 years ago

README.markdown

Dependency Status

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 and above 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. Check if proper gems (sqlite3/mysql/postgresql) are defined in Gemfile and installed. Use bundler for that:
bundle install
  • Check config/settings.yml for proper values. (see config/settings.yml.example).
  • Prepare config/database.yml file (see config/database.yml.example).
  • 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
  • Using browser do basic setup. If You make a mistake delete all data from DB using rake task:
rake db:clear_data
  • Use it.

Specific configuration

None