diff options
author | Raphaël Marichez <falco@gentoo.org> | 2008-04-14 22:38:43 +0200 |
---|---|---|
committer | Raphaël Marichez <falco@gentoo.org> | 2008-04-14 22:38:43 +0200 |
commit | a284d418f05618df475dc12375bd752d0849acee (patch) | |
tree | b9b8e682fa9c2cd32a0a13f2cbe46c4d1b6558cf /mail-filter/proxsmtp/files | |
download | falco-a284d418f05618df475dc12375bd752d0849acee.tar.gz falco-a284d418f05618df475dc12375bd752d0849acee.tar.bz2 falco-a284d418f05618df475dc12375bd752d0849acee.zip |
initial import: proxsmtp ebuild, v. 1.7, old one (2007)
Signed-off-by: Raphaël Marichez <falco@gentoo.org>
Diffstat (limited to 'mail-filter/proxsmtp/files')
-rw-r--r-- | mail-filter/proxsmtp/files/digest-proxsmtp-1.7 | 3 | ||||
-rw-r--r-- | mail-filter/proxsmtp/files/proxsmtpd.init | 21 |
2 files changed, 24 insertions, 0 deletions
diff --git a/mail-filter/proxsmtp/files/digest-proxsmtp-1.7 b/mail-filter/proxsmtp/files/digest-proxsmtp-1.7 new file mode 100644 index 0000000..4172677 --- /dev/null +++ b/mail-filter/proxsmtp/files/digest-proxsmtp-1.7 @@ -0,0 +1,3 @@ +MD5 de6ce4a743b45cf84c4dbaccda9ee147 proxsmtp-1.7.tar.gz 186015 +RMD160 fc4fbcb9d7dd03e10975412fe6ea8bafaa1060c8 proxsmtp-1.7.tar.gz 186015 +SHA256 53fa714c7c4a63cfeec2cd27b646f43aea58141aad2368a1063db47dadb7e1b6 proxsmtp-1.7.tar.gz 186015 diff --git a/mail-filter/proxsmtp/files/proxsmtpd.init b/mail-filter/proxsmtp/files/proxsmtpd.init new file mode 100644 index 0000000..cd87ce3 --- /dev/null +++ b/mail-filter/proxsmtp/files/proxsmtpd.init @@ -0,0 +1,21 @@ +#!/sbin/runscript +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +depend() { + +} + +start() { + ebegin "Starting ProxSMTPd" + start-stop-daemon --start --quiet \ + --exec /usr/sbin/proxsmtpd -- -p /var/run/proxsmtp/proxsmtpd.pid -f /etc/proxsmtpd.conf + eend $? +} + +stop() { + ebegin "Stopping ProxSMTPd" + start-stop-daemon --stop --quiet --pidfile /var/run/proxsmtp/proxsmtpd.pid + eend $? +} |