Zammad-Rolle
This commit is contained in:
commit
a6b16394ed
27 changed files with 552 additions and 0 deletions
10
files/plain-text.patch
Normal file
10
files/plain-text.patch
Normal file
|
@ -0,0 +1,10 @@
|
|||
--- app/models/channel/email_build.rb.orig 2021-07-27 18:03:57.295467567 +0200
|
||||
+++ app/models/channel/email_build.rb 2021-07-27 18:04:20.705471697 +0200
|
||||
@@ -62,6 +62,7 @@
|
||||
|
||||
# generate plain part
|
||||
attr[:body] = attr[:body].html2text
|
||||
+ html_alternative = false
|
||||
end
|
||||
|
||||
# add plain text part
|
6
files/zammad.env
Normal file
6
files/zammad.env
Normal file
|
@ -0,0 +1,6 @@
|
|||
BUNDLE_BINARY="rbenv exec bundle"
|
||||
RAILS_ENV=production
|
||||
RAILS_SERVE_STATIC_FILES=true
|
||||
ZAMMAD_BIND_IP=127.0.0.1
|
||||
ZAMMAD_RAILS_PORT=3000
|
||||
ZAMMAD_WEBSOCKET_PORT=6042
|
18
files/zammad.service
Normal file
18
files/zammad.service
Normal file
|
@ -0,0 +1,18 @@
|
|||
[Unit]
|
||||
Description=Zammad
|
||||
After=syslog.target
|
||||
After=network.target
|
||||
StopWhenUnneeded=true
|
||||
Wants=zammad-rails.service
|
||||
Wants=zammad-scheduler.service
|
||||
Wants=zammad-websocket.service
|
||||
|
||||
[Service]
|
||||
EnvironmentFile=/etc/zammad/zammad.env
|
||||
User=zammad
|
||||
Group=zammad
|
||||
Restart=always
|
||||
ExecStart=/bin/sleep infinity
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Add table
Add a link
Reference in a new issue