(bsc#1217173) Remove environment variables DKIMPROXY_USER DKIMPROXY_GROUP. These are hardcoded anyway in dkimproxy-tmpfiles. Changing these would only lead to trouble. Now User and Group in dkimproxy-in.service are set to dkim to avoid the mentioned security issue. ExecStart got a '+' to execute it by root rights. OBS-URL: https://build.opensuse.org/package/show/server:mail/dkimproxy?expand=0&rev=40
27 lines
696 B
Desktop File
27 lines
696 B
Desktop File
# This file is part of package dkimproxy.
|
|
#
|
|
# Copyright (c) 2018 SuSE LINUX Products GmbH, Germany.
|
|
# Author: Peter Varkoly
|
|
# Please send feedback to http://www.suse.de/feedback
|
|
#
|
|
# Description:
|
|
#
|
|
# Used to start the DKIMproxy. This is an SMTP-proxy
|
|
# that implements the DKIM and DomainKeys standards
|
|
#
|
|
|
|
[Unit]
|
|
Description=Outbound DKIM-proxy (dkimproxy.out)
|
|
After=remote-fs.target
|
|
|
|
|
|
[Service]
|
|
Type=forking
|
|
EnvironmentFile=/etc/sysconfig/dkimproxy
|
|
PIDFile=/run/dkimproxy/dkimproxy_out.pid
|
|
ExecStart=/usr/share/dkimproxy/bin/dkimproxy.out --conf_file=${DKIMPROXY_OUT_CFG} --user=dkim --group=dkim --daemonize --pidfile=/run/dkimproxy/dkimproxy_out.pid
|
|
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|