mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 07:02:29 +01:00
https://www.worlddesign.com/index.cfm/page/software/open-source/spampd.htm An SMTP / LMTP proxy that uses spamassassin to mark spam. Similar to amavisd-new, but lets spamassassin modify headers directly, and significantly simpler to use/configure.
7 lines
123 B
Bash
7 lines
123 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S spampd 2>/dev/null
|
|
adduser -S -D -H -s /sbin/nologin -G spampd -g spampd spampd 2>/dev/null
|
|
|
|
exit 0
|