Coder Social home page Coder Social logo

kidush / brimir Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ivaldi/brimir

0.0 2.0 1.0 2.11 MB

Email helpdesk built using Ruby on Rails and Zurb Foundation

Home Page: http://getbrimir.com

License: GNU Affero General Public License v3.0

Ruby 75.29% JavaScript 1.91% CSS 4.21% HTML 18.35% Shell 0.25%

brimir's Introduction

Brimir Build Status Coverage Status

Brimir is a simple helpdesk system that can be used to handle support requests via incoming email. Brimir is currently used in production at Ivaldi.

Installation

Brimir is a rather simple Ruby on Rails application. The only difficulty in setting things up is how to get incoming email to work. See the next section for details.

Any Rails application needs a web server with Ruby support first. We use Phusion Passenger (mod_rails) ourselves, but you can also use Thin, Puma or Unicorn. Phusion Passenger can be installed for Nginx or Apache, you can chose wichever you like best. The installation differs depending on your distribution, so have a look at their Nginx installation manual or their Apache installation manual.

After setting up a webserver, you have to create a database for Brimir and modify the config file in config/database.yml to reflect the details. Set your details under the production section. We advise to use adapter: postgresql or adapter: mysql2 for production usage, because those are the only two adapters and database servers we test. If you plan to use MySQL, make sure you use utf8 as your charset and collation.

Next up: configuring your outgoing email address and url. This can be set in config/environments/production.rb by adding the following lines before the keyword end:

config.action_mailer.default_options = { from: '[email protected]' }

config.action_mailer.default_url_options = { host: 'brimir.yoururl.com' }

Now install the required gems by running the following command if you want PostgreSQL support:

bundle install --without sqlite mysql development test --deployment

Run the following command to install gems if you want MySQL support:

bundle install --without sqlite postgresql development test --deployment

Generate a secret_key_base in the secrets.yml file:

LINUX: sed -i "s/<%= ENV\[\"SECRET_KEY_BASE\"\] %>/`bin/rake secret`/g" config/secrets.yml
MAC: sed -i "" "s/<%= ENV\[\"SECRET_KEY_BASE\"\] %>/`bin/rake secret`/g" config/secrets.yml

Next, load the database schema and precompile assets:

bin/rake db:schema:load RAILS_ENV=production
bin/rake assets:precompile RAILS_ENV=production

If you want to use LDAP, configure config/ldap.yml accordingly, then change the auth strategy in your application config in file config/application.rb:

config.devise_authentication_strategy = :ldap_authenticatable

(Optional for LDAP) Last thing left to do before logging in is making a user and adding some statuses. You can do this by running:

bin/rails console production
u = User.new({ email: '[email protected]', password: 'somepassword', password_confirmation: 'somepassword' }); u.agent = true; u.save!

Configuring Captcha's

If you want to use recaptcha in production you have to go to https://www.google.com/recaptcha, create your private and public keys and export these to your production environment, by running:

export RECAPTCHA_SITE_KEY="[YOUR_KEY]"
export RECAPTCHA_SECRET_KEY="[YOUR_KEY]"

Remove the recaptcha lines from config/secrets.yml if you don't want to use captcha's all together.

Updating

First download the new code in the same directory by unpacking a release tarball or by running git pull (when you cloned the repo earlier). After updating code run the following commands to install necessary gem updates, migrate the database and regenerate precompiled assets.

bundle install
bin/rake db:migrate RAILS_ENV=production
bin/rake assets:precompile RAILS_ENV=production

Don't forget to restart your application server (touch tmp/restart.txt for Passenger).

Customization

Some applicant level configuration can be set through config/settings.yml

Brimir is available in several languages. By default, it will use the locale corresponding to the user browser agent, if it was among the supported locales. If you want to change this and force certain locale, you can do that by setting: ignore_user_agent_locale: true in config/settings.yml

Incoming email

Incoming emails can be posted to the tickets url by using the script found in scripts/post-mail. Create an alias in your /etc/aliases file like this:

brimir: "|/bin/sh /path/to/your/brimir/repo/script/post-mail http://yoururl.com/tickets.json"

Now sending an email to [email protected] should start curl and post the email to your brimir installation.

Contributing

We appreciate all contributions! If you would like to contribute, please follow these steps:

  • Fork the repo.
  • Create a branch with a name that describes the change.
  • Make your changes in the branch.
  • Submit a pull-request to merge your feature-branch in our master branch.

Requested features

Some users have made requests for the following features. If you would like to contribute, you could add any of these.

  • Allowing customers to update ticket status, with correct email notifications.
  • Switchable property to support threads by using special tags in the subject line instead of relying on mail headers.
  • Support for hosted incoming mail services (Sendgrid, Mandrill), possibly using griddler gem.
  • Ability to sign in using a Single Sign On functionality based on Shared Token or JWT.
  • Private note addition to tickets.
  • Automated replies based on the current rule system.
  • Adding knowledge base functionality.
  • Set labels on the create ticket form.
  • Assign tickets to groups of users
  • When replying, select a response from pre-defined canned responses and modify to your needs
  • TicketsController#create should limit access to IP and be user/pass protected
  • Integration with OpsWeekly
  • Social media integration such as FreshDesk and Zoho have (reply to requests via social media)
  • Ticket creation api (and improving existing api)
  • Ticket search that also searches in from field and replies.
  • Mark tickets as duplicate, linking it to the duplicated ticket.
  • Ability to rename tickets (change their subject).
  • Improve rule form to allow only valid statuses (#150).
  • Timed rules, such as re-assigning when no reply is added withing 24 hours (#203).
  • Desktop notifications using web notifications (#218).
  • Custom ticket statuses, all via database. (#217)
  • IMAP or POP3 pull mechanism for new tickets. (#249)
  • Notes field for customer account, to add info about them, such as website url.

License

Brimir is licensed under the GNU Affero General Public License Version 3.

brimir's People

Contributors

frenkel avatar basschoen avatar fiedl avatar modsaid avatar alisnic avatar mickael-kerjean avatar bsylvain avatar jamgregory avatar mantoine96 avatar flohin avatar marbball avatar kidush avatar vrish88 avatar fkonigy avatar fshahy avatar hadifarnoud avatar sapslaj avatar nshopik avatar mpakus avatar stricte avatar viddypiddy avatar lacour avatar straight-shoota avatar davidelbe avatar stormsw avatar yongqianme avatar andryyy avatar vikassy avatar ppiontek avatar neilor avatar

Watchers

James Cloos avatar  avatar

Forkers

miquellysson

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.