Zammad is a web based open source helpdesk/customer support system.
Find a file
2016-01-28 10:34:41 +01:00
app Added facebook agent tests. 2016-01-28 09:50:05 +01:00
bin Upgrade to rails 4.2.4 2015-09-26 08:57:07 +02:00
config Read files recursively. 2016-01-20 01:47:38 +01:00
contrib Added gzip, added X-Forwarded-For header, small improvements. 2016-01-05 17:29:08 +01:00
db Added postgresql support. 2016-01-19 23:30:23 +01:00
doc added todos, replaced literals 2015-02-15 11:00:40 +01:00
extras fixed now the correct section of the spec 2015-10-20 10:05:07 +02:00
lib Reduced total timeout. 2016-01-28 10:34:41 +01:00
log Init version. 2012-04-10 15:31:21 +02:00
packaging/hooks exec migrations after package update 2015-12-03 14:16:55 +01:00
public Recompile of chat widget. 2016-01-20 20:38:38 +01:00
script Improved generation of db name. 2016-01-20 01:11:57 +01:00
test Added facebook agent tests. 2016-01-28 09:50:05 +01: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 ignore selenium test screenshot 2015-10-05 15:04:18 +02:00
.gitlab-ci.yml Do ticket core browser tests dedicated with database. 2016-01-28 00:52:51 +01:00
.pkgr.yml next try 2015-12-03 16:39:52 +01:00
.rubocop.yml Added missing newline. 2016-01-15 22:18:46 +01:00
browserlist add autoprefixer, remove manual prefixes 2015-05-19 12:36:28 +02:00
coffeelint.json Next coffeelint level. 2015-09-24 15:04:45 +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 Load database gems based on config/database.yml settings. 2016-01-22 11:56:32 +01:00
Gemfile.lock Load database gems based on config/database.yml settings. 2016-01-22 11:56:32 +01:00
Guardfile Applied rubocop. 2015-09-29 15:23:32 +02:00
gulpfile.js clean up icons 2015-05-26 10:10:29 +02:00
INSTALL.md add user w/ rpm installation 2015-10-19 19:05:42 +02:00
LICENSE-3RD-PARTY.txt Updated. Removed not needed excanvas. 2015-12-28 23:13:23 +01:00
package.json update more icons, also ticket zoom edit controls 2015-05-21 16:45:41 +02:00
Procfile packager.io config 2015-12-03 10:03:08 +01:00
Rakefile removed metric_fu 2012-11-13 18:28:48 +01:00
README.md Updated build status url. 2016-01-26 13:59:04 +01:00
README_elasticsearch.md Fixed typo. 2015-10-20 02:55:31 +02:00
README_Install_Mac.md Updated readme's. 2014-04-02 15:02:53 +02:00
README_Install_Ubuntu.md Cleanup. 2015-11-24 03:33:40 +01:00

build status

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, 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.