"Fossies" - the Fresh Open Source Software Archive

Member "lib/systemd/system/benno-smtp.service" (7 Feb 2022, 677 Bytes) of package /linux/privat/benno-smtp-2.8.0.tgz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 [Unit]
    2 Description=Benno MailArchive SMTP Import Daemon
    3 After=network.target nfs-client.target
    4 ConditionPathExists=!/etc/benno-smtp/benno-smtp.DISABLED
    5 
    6 [Service]
    7 Environment="JAVA_OPTIONS=-server" "DAEMON_ARGS=-c /etc/benno-smtp/benno-smtp.conf"
    8 EnvironmentFile=-/etc/default/benno-smtp
    9 WorkingDirectory=/opt/benno
   10 UMask=027
   11 StandardError=null
   12 ExecStart=/usr/bin/java \
   13     -Dlog4j.configuration=/etc/benno-smtp/bennosmtp-log4j.xml \
   14     $JAVA_OPTIONS \
   15     -jar /opt/benno-smtp/bennosmtp.jar \
   16     $DAEMON_ARGS
   17 User=benno
   18 Group=benno
   19 KillMode=process
   20 Restart=on-failure
   21 RestartPreventExitStatus=255
   22 Type=simple
   23 
   24 [Install]
   25 WantedBy=multi-user.target
   26 Alias=benno-smtp.service
   27