a45ad0c940
Main changes since 4.1.2: Full virtual robot support ; you can now create 2 lists with the same name in different virtual robots Message topics : list messages can be tagged with topics. List owner defines a set of topics for the list. List members can select topics and only receive related messages. Sympa is now VERP enabled new return_path_suffix parameter in sympa.conf new 'digest_max_size' list parameter. If a digest exceeds this limit, then multiple messages are sent. New set of web templates, CSS and XHTML compatible. RSS channels are providing the following features : * latest messages in list archives * latest documents in web repository * latest created mailing lists * most active mailing lists Also, lots of other small features, translations and bug fixes.
22 lines
402 B
Bash
22 lines
402 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: archived.sh,v 1.1 2007/03/28 20:51:10 bouyer Exp $
|
|
#
|
|
# PROVIDE: archived
|
|
# REQUIRE: sympa
|
|
# KEYWORD: shutdown
|
|
|
|
if [ -f /etc/rc.subr ]
|
|
then
|
|
. /etc/rc.subr
|
|
fi
|
|
|
|
name="archived"
|
|
rcvar=$name
|
|
command="@PREFIX@/sympa/bin/archived.pl"
|
|
pidfile="/var/sympa/run/archived.pid"
|
|
command_interpreter="@PREFIX@/bin/perl"
|
|
sympa_user="sympa"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|