Zammad is a web based open source helpdesk/customer support system.
Find a file
2016-07-28 12:09:32 +02:00
app Added api setting to admin interface and tokens to user preferences. 2016-07-28 12:09:32 +02:00
bin Upgrade to rails 4.2.4 2015-09-26 08:57:07 +02:00
config Added api setting to admin interface and tokens to user preferences. 2016-07-28 12:09:32 +02:00
contrib Improved auto wizard test. 2016-07-25 22:29:10 +02:00
db Added api setting to admin interface and tokens to user preferences. 2016-07-28 12:09:32 +02: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 Updated gems. 2016-07-27 00:02:28 +02:00
log Init version. 2012-04-10 15:31:21 +02:00
public search: style search detail, add detail link 2016-07-05 17:06:00 +02:00
script Applied rubocop. 2016-06-30 22:04:48 +02:00
test Added api setting to admin interface and tokens to user preferences. 2016-07-28 12:09:32 +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 Just push related user organisation to clients (improved tests). 2016-05-16 19:49:06 +02:00
.gitlab-ci.yml Improved job name. 2016-07-25 23:00:11 +02:00
.pkgr.yml Upgraded pkgr config. 2016-05-30 09:12:01 +02: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 Updated gems. 2016-07-27 00:02:28 +02:00
Gemfile.lock Updated gems. 2016-07-27 00:02:28 +02: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 Cleanup. 2016-07-25 22:09:21 +02:00
LICENSE-ICONS-3RD-PARTY.json add info icon, remove website and zammad icon 2016-03-23 14:26:22 +01:00
package.json update more icons, also ticket zoom edit controls 2015-05-21 16:45:41 +02:00
Procfile Upgraded pkgr config. 2016-05-30 09:12:01 +02:00
Rakefile removed metric_fu 2012-11-13 18:28:48 +01:00
README.md Updated build icon url. 2016-05-21 11:14:28 +02:00
README_elasticsearch.md Spliced searches to separate call to handle limit issue (only usable for one query/request). 2016-07-08 01:22:09 +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.