Zammad is a web based open source helpdesk/customer support system.
Find a file
2015-07-03 18:56:27 +02:00
app Applied rubocop cop 'Style/RedundantBegin'. 2015-07-03 17:30:05 +02:00
config Added shorter/ical routes and made them defaults. 2015-06-29 10:59:25 +02:00
contrib WIP sla list 2015-06-24 12:45:08 +02:00
db Merged some migrations. 2015-07-01 13:53:21 +02:00
doc added todos, replaced literals 2015-02-15 11:00:40 +01:00
extras add clipboard and reload icon 2015-06-02 15:40:02 +02:00
lib Applied rubocop cop 'Style/RegexpLiteral'. 2015-07-03 18:56:27 +02:00
log Init version. 2012-04-10 15:31:21 +02:00
public Update to new translation. 2015-06-08 22:35:51 +02:00
script Applied rubocop cop 'Style/SpaceInsideStringInterpolation'. 2015-07-03 17:18:01 +02:00
test Applied rubocop cop 'Style/IndentationWidth'. 2015-07-03 17:37:27 +02:00
tmp Added pids directory. 2013-06-06 11:54:21 +02:00
vendor Applied rubocop Style/CommentIndentation. 2015-05-07 22:49:15 +02:00
.gitignore add new icon technique 2015-05-21 16:47:33 +02:00
.rubocop.yml Removed unneded TODO, all relevant files are excluded now. 2015-05-08 16:13:32 +02:00
browserlist add autoprefixer, remove manual prefixes 2015-05-21 16:49:07 +02:00
config.ru Init version. 2012-04-10 15:31:21 +02:00
CREDITS added todos, replaced literals 2015-02-15 11:00:40 +01:00
Gemfile Removed not longer needed gems. 2015-06-29 02:00:12 +02:00
Guardfile add new icon technique 2015-05-21 16:47:33 +02:00
gulpfile.js clean up icons 2015-05-26 10:10:29 +02:00
package.json add new icon technique 2015-05-21 16:47:33 +02:00
Rakefile removed metric_fu 2012-11-13 18:28:48 +01:00
README.md fixed build status image 2015-04-04 13:32:57 +02:00
README_elasticsearch.md Improved attachment test. 2015-04-07 01:56:53 +02:00
README_Install_Mac.md Updated readme's. 2014-04-02 15:02:53 +02:00
README_Install_Ubuntu.md Updated readme's. 2014-04-02 15:02:53 +02:00

![Build Status](http://ci.zammad.org/buildStatus/icon?job=Zammad Unittest Develop (MySQL)) ![Build Status](http://ci.zammad.org/buildStatus/icon?job=Zammad Unittest Develop (MariaDB Cluster)) Welcome to Zammad

Zammad is a web based open source helpdesk/ticket system with many features to manage customer telephone calls and e-mails. It is distributed under the GNU AFFERO General Public License (AGPL) and tested on Linux, Solaris, AIX, Windows, FreeBSD, OpenBSD and Mac OS 10.x. Do you receive many e-mails and want to answer them with a team of agents? You're going to love Zammad!

Getting Started

  1. Install Zammad on your system
     root@shell> cd /opt/
     root@shell> tar -xzf zammad-1.0.1.tar.gz
     root@shell> useradd zammad
     zammad@shell> su - zammad
  1. Install all dependencies
     zammad@shell> cd zammad
     zammad@shell> gem install rails
     zammad@shell> vi Gemfile # enable libv8, execjs and therubyracer if needed!
     zammad@shell> bundle install
  1. Configure your databases
     zammad@shell> cp config/database.yml.dist config/database.yml
     zammad@shell> vi config/database.yml
  1. Initialize your database
     zammad@shell> export RAILS_ENV=production
     zammad@shell> rake db:create
     zammad@shell> rake db:migrate
     zammad@shell> rake db:seed
  1. Change directory to zammad (if needed) and start the web server:
     zammad@shell> rake assets:precompile
     zammad@shell> puma -p 3000 # application web server
     zammad@shell> script/websocket-server.rb start # non blocking websocket server
     zammad@shell> script/scheduler.rb start # generate overviews on demand, just send changed data to browser
  1. Go to http://localhost:3000/#getting_started and you'll see: "Welcome to Zammad!", there you need to create your admin user and you need to invite other agents.