-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make ready for release; Update example service scripts.
- Loading branch information
Showing
6 changed files
with
30 additions
and
18 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,18 @@ | ||
[Unit] | ||
Description=Spamassassin Proxy Daemon | ||
After=network.target | ||
Description=Spam Proxy Daemon | ||
After=syslog.target network.target | ||
|
||
[Service] | ||
ExecStart=/usr/bin/spampd --port=10025 --relayhost=127.0.0.1:10026 --tagall --log-rules-hit --user spampd --group spampd --pid=/home/spampd/spampd.pid --nodetach | ||
ExecStart=/usr/sbin/spampd --config /etc/spampd.cfg --pid /run/spampd.pid --nodetach | ||
ExecReload=/usr/bin/kill -HUP $MAINPID | ||
KillMode=mixed | ||
KillSignal=SIGQUIT | ||
TimeoutStopSec=30 | ||
Restart=on-failure | ||
# To run as a forking server, uncomment below and remove the "--nodetach" option | ||
# from the command line above. You may need/want to add "--setsid" option instead. | ||
#Type=forking | ||
#PIDFile=/run/spampd.pid | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
# SpamPD | ||
# SpamPD - Spam Proxy Daemon | ||
|
||
Originally released in May of 2002, SpamPD is a program used within an e-mail delivery system to scan messages for possible Unsolicited Commercial E-mail (UCE, aka spam) content. | ||
It uses an excellent program called <a href="https://spamassassin.apache.org/" target="_new">SpamAssassin</a> (SA) to do the actual message scanning. SpamPD acts as a transparent SMTP/LMTP proxy between | ||
two mail servers, and during the transaction it passes the mail through SA. If SA decides the mail could be spam, then SpamPD will ask SA to | ||
add some headers and a report to the message indicating it's spam and why. SpamPD is written in Perl and should theoretically run on any | ||
Originally released in May of 2002, _SpamPD_ is a program used within an e-mail delivery system to scan messages for possible Unsolicited Commercial E-mail (UCE, aka spam) content. | ||
It uses an excellent program called <a href="https://spamassassin.apache.org/" target="_new">SpamAssassin</a> (SA) to do the actual message scanning. SpamPD acts as a transparent SMTP/LMTP proxy between | ||
two mail servers, and during the transaction it passes the mail through SA. If SA decides the mail could be spam, then SpamPD will ask SA to | ||
add some headers and a report to the message indicating it's spam and why. SpamPD is written in Perl and should theoretically run on any | ||
platform supported by Perl and SpamAssassin. | ||
|
||
Check the [Releases](https://github.com/mpaperno/spampd/releases) area for latest versions, and see the old | ||
<a href="https://github.com/mpaperno/spampd/downloads">Downloads</a> section for older releases. | ||
Check the [Releases](https://github.com/mpaperno/spampd/releases) area for latest versions, and see the old | ||
[Downloads](https://github.com/mpaperno/spampd/downloads) section for older releases (and the "previous-versions" folder for some even more ancient ones). | ||
Recently the Debian package version was added to this repo as a branch, and those tags will also show up in the Releases page. | ||
|
||
Please read the [POD file](https://github.com/mpaperno/spampd/blob/master/spampd.pod) for full documentation of the many available options. | ||
Please read the [POD file](https://github.com/mpaperno/spampd/blob/master/spampd.pod) for full documentation of the many available options. | ||
See the [changelog](https://github.com/mpaperno/spampd/blob/master/changelog.txt) for version history. | ||
|
||
More historic background information is available <a href="http://www.worlddesign.com/index.cfm/page/rd/mta/spampd.htm">here</a>. | ||
More historic background information is available <a href="http://www.worlddesign.com/index.cfm/page/rd/mta/spampd.htm" target="_new">here</a>. | ||
|
||
Linux packages data courtesy of Repology: | ||
|
||
<a href="https://repology.org/metapackage/spampd/versions" target="_new"> | ||
<img src="https://repology.org/badge/vertical-allrepos/spampd.svg?minversion=2.60&header=Latest+release+v2.60" alt="Packaging status"> | ||
<img src="https://repology.org/badge/vertical-allrepos/spampd.svg?minversion=2.61&header=Latest+release+v2.61" alt="Packaging status"> | ||
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters