mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 17:47:03 +00:00
34 lines
920 B
Desktop File
34 lines
920 B
Desktop File
[Unit]
|
|
Description=Inbucket Disposable Email Service
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=daemon
|
|
Group=daemon
|
|
PermissionsStartOnly=true
|
|
|
|
Environment=INBUCKET_LOGLEVEL=warn
|
|
Environment=INBUCKET_SMTP_ADDR=0.0.0.0:2500
|
|
Environment=INBUCKET_POP3_ADDR=0.0.0.0:1100
|
|
Environment=INBUCKET_WEB_ADDR=0.0.0.0:9000
|
|
Environment=INBUCKET_WEB_UIDIR=/usr/local/share/inbucket/ui
|
|
Environment=INBUCKET_WEB_GREETINGFILE=/etc/inbucket/greeting.html
|
|
Environment=INBUCKET_STORAGE_TYPE=file
|
|
Environment=INBUCKET_STORAGE_PARAMS=path:/var/local/inbucket
|
|
|
|
# Uncomment line below to use low numbered ports
|
|
#ExecStartPre=/sbin/setcap 'cap_net_bind_service=+ep' /usr/local/bin/inbucket
|
|
|
|
ExecStartPre=/bin/mkdir -p /var/local/inbucket
|
|
ExecStartPre=/bin/chown daemon:daemon /var/local/inbucket
|
|
|
|
ExecStart=/usr/local/bin/inbucket
|
|
|
|
# Give SMTP connections time to drain
|
|
TimeoutStopSec=20
|
|
KillMode=mixed
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|