about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--MANIFEST1
-rw-r--r--examples/public-inbox-watch.service20
2 files changed, 21 insertions, 0 deletions
diff --git a/MANIFEST b/MANIFEST
index 8038ad48..5bbd4f7a 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -37,6 +37,7 @@ examples/public-inbox-httpd.socket
 examples/public-inbox-httpd@.service
 examples/public-inbox-nntpd.socket
 examples/public-inbox-nntpd@.service
+examples/public-inbox-watch.service
 examples/public-inbox.psgi
 examples/unsubscribe-milter.socket
 examples/unsubscribe-milter@.service
diff --git a/examples/public-inbox-watch.service b/examples/public-inbox-watch.service
new file mode 100644
index 00000000..abb41469
--- /dev/null
+++ b/examples/public-inbox-watch.service
@@ -0,0 +1,20 @@
+# ==> /etc/systemd/system/public-inbox-watch.service <==
+
+[Unit]
+Description = public-inbox Maildir watch
+After = spamassassin.service
+
+[Service]
+Environment = PI_CONFIG=/home/pi/.public-inbox/config \
+PATH=/usr/local/bin:/usr/bin:/bin
+ExecStart = /usr/local/bin/public-inbox-watch
+
+StandardOutput = syslog
+StandardError = syslog
+ExecReload = /bin/kill -HUP $MAINPID
+# this user must have read access to Maildirs it watches
+User = pi
+KillMode = process
+
+[Install]
+WantedBy = multi-user.target