Portage is a package management system used by Gentoo Linux
# ChangeLog for mail-filter/ask
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/ask/ChangeLog,v 1.7 2007/03/18 02:48:19 genone Exp $
18 Mar 2007; Marius Mauch
Replacing einfo with elog
08 Feb 2007; Diego Pettenò
Regenerate digest in Manifest2 format.
05 Jun 2005; Michael Hanselmann
Stable on ppc.
25 Sep 2004; Andrej Kacian
Stable on x86.
28 Aug 2004; David Holm
Added to ~ppc.
08 Aug 2004;
Removed redundant functions
*ask-2.4.1 (07 Aug 2004)
07 Aug 2004; Tom Knight
Thanks to Saleem A. for submitting this ebuild in bug #25952
DIST ask-2.4.1.tar.gz 102631 RMD160 7b93565b0837274927c4f7a08d6f0976230745b3 SHA1 c639dd2dadc47e3ba1daec145c99f078de281a58 SHA256 1b5aedca6ff52cb6067f07ca6f8766e86ab4dd2b19585a3e4221c01cc50f147d
EBUILD ask-2.4.1.ebuild 1517 RMD160 f5b326eb2acb3efbfbe29102cc8e5237054f842b SHA1 1115fb8ecea1d771d1b65dc538fb681a37ba20c0 SHA256 e20b769f8801a86dbe7d8a82df8601b1cbdef9b5d7e9aff1f0dfbb95b3aaedbf
MISC ChangeLog 894 RMD160 036246ff53095bfea057bef933847bea0ffe5e3d SHA1 83d104424c9a477c9801454a9a3a08bc1f0a7db2 SHA256 75d1bc0fe0e8d1989eed6da9f05ee6ba9ab907f6c26f3426a0bd51712b7fab58
MISC metadata.xml 161 RMD160 273e570423fa3cd9d3f15f7967a43307c8ee9661 SHA1 a1fecd2f7b169d621b88c6ccab9d758209fc8f19 SHA256 4ebf9a8f60040bfb95f13790c1d146a49c69f791f9c421e02a5d96fd6fcb2b32
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-filter/ask/ask-2.4.1.ebuild,v 1.6 2007/03/18 02:48:19 genone Exp $
DESCRIPTION="Active Spam Killer: A program to filter spam"
HOMEPAGE="http://www.paganini.net/ask/index.html"
SRC_URI="mirror://sourceforge/a-s-k/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc x86"
IUSE="procmail"
RDEPEND=">=dev-lang/python-2.2
virtual/mta
procmail? ( >=mail-filter/procmail-3.22 )"
src_install() {
into /
dobin ask.py asksetup.py askversion.py utils/asksenders.py
insinto /usr/lib/ask
doins askconfig.py asklock.py asklog.py askmail.py askmain.py \
askmessage.py askremote.py
insinto /usr/share/ask/samples
doins samples/*
insinto /usr/share/ask/templates
doins templates/*
insinto /usr/share/ask/utils
doins utils/*
doman docs/*.1
dodoc ChangeLog TODO docs/ask_doc*
}
pkg_postinst() {
elog
elog "You MUST run the asksetup.py file to configure ASK!"
elog
if use procmail; then
elog "To use ASK's procmail support these should be your first two procmail rules:"
elog
elog ":0 fW"
elog "|/path_to_ask/ask.py --procmail --loglevel=5 --logfile=/your_home/ask.log"
elog
elog ":0 e"
elog "/dev/null"
elog
elog "The second rule above instructs procmail to deliver the message to /dev/null"
elog "if ASK returns a fail code. If you're truly paranoid, you can save those"
elog "messages to a file instead for later inspection."
fi
}