Permalink
Please
sign in to comment.
Showing
with
31 additions
and 30 deletions.
File renamed without changes.
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
# | ||
# PROVIDE: smtprelay | ||
# REQUIRE: networking | ||
|
||
. /etc/rc.subr | ||
|
||
name="smtprelay" | ||
rcvar="smtprelay_enable" | ||
|
||
pidfile="/var/run/${name}.pid" | ||
command="/usr/sbin/daemon" | ||
command_args="-P ${pidfile} -r -f %%LOCALBASE%%/bin/smtprelay -config %%ETCDIR%%/smtprelay.ini" | ||
|
||
load_rc_config $name | ||
: ${smtprelay_enable:=no} | ||
|
||
run_rc_command "$1" |
@@ -0,0 +1,4 @@ | ||
Simple Golang SMTP relay/proxy server that accepts mail via | ||
SMTP and forwards it directly to another SMTP server. | ||
|
||
WWW: https://code.bluelife.at/decke/smtprelay |
0 comments on commit
fbb84b0