aboutsummaryrefslogtreecommitdiff
path: root/mail/perdition/files
diff options
context:
space:
mode:
Diffstat (limited to 'mail/perdition/files')
-rw-r--r--mail/perdition/files/perdition.imap4.in29
-rw-r--r--mail/perdition/files/perdition.imap4s.in29
-rw-r--r--mail/perdition/files/perdition.imaps.in29
-rw-r--r--mail/perdition/files/perdition.in29
-rw-r--r--mail/perdition/files/perdition.pop3.in29
-rw-r--r--mail/perdition/files/perdition.pop3s.in30
6 files changed, 175 insertions, 0 deletions
diff --git a/mail/perdition/files/perdition.imap4.in b/mail/perdition/files/perdition.imap4.in
new file mode 100644
index 000000000000..b3ee2112d738
--- /dev/null
+++ b/mail/perdition/files/perdition.imap4.in
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+# PROVIDE: perdition_imap4
+# REQUIRE: DAEMON
+# KEYWORD: shutdown
+#
+# Add the following line to /etc/rc.conf to enable perdition.imap4
+#
+# perdition_imap4_enable="YES"
+#
+# See perdition(8) for flags
+#
+
+perdition_imap4_enable=${perdition_imap4_enable-"NO"}
+perdition_imap4_flags=${perditon_imap4_flags-""}
+
+. %%RC_SUBR%%
+
+name="perdition_imap4"
+rcvar=`set_rcvar`
+
+command="%%PREFIX%%/sbin/perdition.imap4"
+pidfile="/var/run/perdition.imap4/perdition.imap4.pid"
+
+load_rc_config $name
+
+run_rc_command "$1"
diff --git a/mail/perdition/files/perdition.imap4s.in b/mail/perdition/files/perdition.imap4s.in
new file mode 100644
index 000000000000..bdc496ba2861
--- /dev/null
+++ b/mail/perdition/files/perdition.imap4s.in
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+# PROVIDE: perdition_imap4s
+# REQUIRE: DAEMON
+# KEYWORD: shutdown
+#
+# Add the following line to /etc/rc.conf to enable perdition.imap4s
+#
+# perdition_imap4s_enable="YES"
+#
+# See perdition(8) for flags
+#
+
+perdition_imap4s_enable=${perdition_imap4s_enable-"NO"}
+perdition_imap4s_flags=${perditon_imap4s_flags-""}
+
+. %%RC_SUBR%%
+
+name="perdition_imap4s"
+rcvar=`set_rcvar`
+
+command="%%PREFIX%%/sbin/perdition.imap4s"
+pidfile="/var/run/perdition.imap4s/perdition.imap4s.pid"
+
+load_rc_config $name
+
+run_rc_command "$1"
diff --git a/mail/perdition/files/perdition.imaps.in b/mail/perdition/files/perdition.imaps.in
new file mode 100644
index 000000000000..87e8d8f6c565
--- /dev/null
+++ b/mail/perdition/files/perdition.imaps.in
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+# PROVIDE: perdition_imaps
+# REQUIRE: DAEMON
+# KEYWORD: shutdown
+#
+# Add the following line to /etc/rc.conf to enable perdition.imaps
+#
+# perdition_imaps_enable="YES"
+#
+# See perdition(8) for flags
+#
+
+perdition_imaps_enable=${perdition_imaps_enable-"NO"}
+perdition_imaps_flags=${perditon_imaps_flags-""}
+
+. %%RC_SUBR%%
+
+name="perdition_imaps"
+rcvar=`set_rcvar`
+
+command="%%PREFIX%%/sbin/perdition.imaps"
+pidfile="/var/run/perdition.imaps/perdition.imaps.pid"
+
+load_rc_config $name
+
+run_rc_command "$1"
diff --git a/mail/perdition/files/perdition.in b/mail/perdition/files/perdition.in
new file mode 100644
index 000000000000..86cc85822640
--- /dev/null
+++ b/mail/perdition/files/perdition.in
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+# PROVIDE: perdition
+# REQUIRE: DAEMON
+# KEYWORD: shutdown
+#
+# Add the following line to /etc/rc.conf to enable perdition
+#
+# perdition_enable="YES"
+#
+# See perdition(8) for flags
+#
+
+perdition_enable=${perdition_enable-"NO"}
+perdition_flags=${perdition_flags-""}
+
+. %%RC_SUBR%%
+
+name="perdition"
+rcvar=`set_rcvar`
+
+command="%%PREFIX%%/sbin/${name}"
+pidfile="/var/run/perdition/${name}.pid"
+
+load_rc_config $name
+
+run_rc_command "$1"
diff --git a/mail/perdition/files/perdition.pop3.in b/mail/perdition/files/perdition.pop3.in
new file mode 100644
index 000000000000..7ae0253ee428
--- /dev/null
+++ b/mail/perdition/files/perdition.pop3.in
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+# PROVIDE: perdition_pop3
+# REQUIRE: DAEMON
+# KEYWORD: shutdown
+#
+# Add the following line to /etc/rc.conf to enable perdition.pop3
+#
+# perdition_pop3_enable="YES"
+#
+# See perdition(8) for flags
+#
+
+perdition_pop3_enable=${perdition_pop3_enable-"NO"}
+perdition_pop3_flags=${perditon_pop3_flags-""}
+
+. %%RC_SUBR%%
+
+name="perdition_pop3"
+rcvar=`set_rcvar`
+
+command="%%PREFIX%%/sbin/perdition.pop3"
+pidfile="/var/run/perdition.pop3/perdition.pop3.pid"
+
+load_rc_config $name
+
+run_rc_command "$1"
diff --git a/mail/perdition/files/perdition.pop3s.in b/mail/perdition/files/perdition.pop3s.in
new file mode 100644
index 000000000000..a6ca2537c15c
--- /dev/null
+++ b/mail/perdition/files/perdition.pop3s.in
@@ -0,0 +1,30 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+# PROVIDE: perdition_pop3s
+# REQUIRE: DAEMON
+# KEYWORD: shutdown
+#
+# Add the following line to /etc/rc.conf to enable perdition.pop3s
+#
+# perdition_pop3s_enable="YES"
+#
+# See perdition(8) for flags
+#
+
+perdition_pop3s_enable=${perdition_pop3s_enable-"NO"}
+perdition_pop3s_flags=${perditon_pop3s_flags-""}
+
+. %%RC_SUBR%%
+
+name="perdition_pop3s"
+rcvar=`set_rcvar`
+
+command="%%PREFIX%%/sbin/perdition.pop3s"
+pidfile="/var/run/perdition.pop3s/perdition.pop3s.pid"
+
+load_rc_config $name
+
+run_rc_command "$1"
+