19a2ec0b3a
acts as a gateway to a variety of webmail services. One possible use of this package, which I've tested, is in migrating from Hotmail (which provides neither mail forwarding nor POP access to the mailstore) to Gmail (which can act as a POP client).
22 lines
498 B
Bash
Executable file
22 lines
498 B
Bash
Executable file
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: freepopsd.sh,v 1.1.1.1 2007/06/05 05:56:01 schmonz Exp $
|
|
#
|
|
|
|
# PROVIDE: freepopsd
|
|
# REQUIRE: DAEMON LOGIN
|
|
|
|
# User-settable rc.conf variables and their default values:
|
|
: ${freepopsd_flags:="-l syslog -p 110"}
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="freepopsd"
|
|
rcvar=$name
|
|
command="@PREFIX@/bin/${name}"
|
|
command_args="-d -s @FREEPOPSD_USER@.@FREEPOPSD_GROUP@"
|
|
pidfile="@VARBASE@/run/${name}.pid"
|
|
required_files="@PKG_SYSCONFDIR@/config.lua"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|