Zammad is a web based open source helpdesk/customer support system.
Find a file
2016-03-12 01:00:05 +01:00
app Upgrade to jquery ui 1.11.4 (removed not longer needed css). 2016-03-12 01:00:05 +01:00
bin Upgrade to rails 4.2.4 2015-09-26 08:57:07 +02:00
config add print style for ticket zoom 2016-03-11 15:34:43 +01:00
contrib smaller tab close click area 2016-03-11 15:04:07 +01:00
db Added only_shown_if_selectable support for form elements. 2016-03-07 07:46:11 +01:00
doc added todos, replaced literals 2015-02-15 11:00:40 +01:00
extras update icons license workflow, add authors 2016-02-16 11:49:12 +01:00
lib Improved browser test. 2016-03-11 06:58:27 +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 add website icon for channel: website form 2016-03-11 14:57:40 +01:00
script Improved imap folder support in admin interface. 2016-03-10 16:47:42 +01:00
test Improved browser test. 2016-03-11 06:58:27 +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 Execute twitter tests only on one concurrent node (to prevent rate limits). 2016-02-03 12:51:47 +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 Set config after env ins running to use an existing config namespace. 2016-02-04 12:49:10 +01:00
CREDITS added todos, replaced literals 2015-02-15 11:00:40 +01:00
Gemfile To many puma issues. Moved back to 2.16. 2016-03-02 14:13:21 +01:00
Gemfile.lock To many puma issues. Moved back to 2.16. 2016-03-02 14:13:21 +01:00
Guardfile Applied rubocop. 2015-09-29 15:23:32 +02:00
gulpfile.js make checkboxes and radios focusable 2016-03-03 11:39:22 +01:00
INSTALL.md add user w/ rpm installation 2015-10-19 19:05:42 +02:00
LICENSE-3RD-PARTY.txt Improved scrolling with keyboard shortcuts. 2016-02-25 22:53:14 +01:00
LICENSE-ICONS-3RD-PARTY.json add website icon for channel: website form 2016-03-11 14:57:40 +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 Removed not longer needed info. 2016-02-26 20:18:22 +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> 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.