Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 216862 Details for
Bug 301119
mail-filter/spamassassin-3.3.1
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
3.2.5-spamd.init
3.2.5-spamd.init (text/plain), 902 bytes, created by
David Abbott (RETIRED)
on 2010-01-19 00:42:42 UTC
(
hide
)
Description:
3.2.5-spamd.init
Filename:
MIME Type:
Creator:
David Abbott (RETIRED)
Created:
2010-01-19 00:42:42 UTC
Size:
902 bytes
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2008 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: $ > ># NB: Config is in /etc/conf.d/spamd > ># Provide a default location if they haven't in /etc/conf.d/spamd >PIDFILE=${PIDFILE:-/var/run/spamd.pid} > >opts="reload" > >depend() { > need net > before mta > use logger >@USEPOSTGRES@ use postgresql >@USEMYSQL@ use mysql >} > >start() { > ebegin "Starting spamd" > start-stop-daemon --start --quiet \ > --name spamd \ > --nicelevel ${SPAMD_NICELEVEL:-0} \ > --pidfile ${PIDFILE} \ > --exec /usr/sbin/spamd -- -d -r ${PIDFILE} \ > ${SPAMD_OPTS} > if ! [ -f "${PIDFILE}" ]; then > sleep 1 > fi > eend $? "Failed to start spamd" >} > >stop() { > ebegin "Stopping spamd" > start-stop-daemon --stop --quiet --pidfile ${PIDFILE} > eend $? "Failed to stop spamd" >} > >reload() { > ebegin "Reloading configuration" > kill -HUP $(< ${PIDFILE}) > eend $? >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 301119
:
216625
| 216862 |
217527
|
217563
|
217663
|
220885