Sievelog is a message dispatcher inspired by swatch but more

focused on the following problems:

 * Having a clean syntax
 * Directing a raw syslog stream to different files based on content
 * Mailing out alerts based on content
 * Being fast

Sievelog's syntax is as simple as "<regex>" -> /some/file.

WWW: http://sievelog.googlecode.com/

PR:		ports/149347
Submitted by:	Jesse Kempf <jkempf@davisvision.com>
This commit is contained in:
Sahil Tandon 2010-08-17 23:00:22 +00:00
parent ceec337d6b
commit b61a2cd026
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=259452
5 changed files with 52 additions and 0 deletions

View file

@ -778,6 +778,7 @@
SUBDIR += sge61
SUBDIR += sge62
SUBDIR += shlock
SUBDIR += sievelog
SUBDIR += skill
SUBDIR += slack
SUBDIR += sleuthkit

View file

@ -0,0 +1,33 @@
# New ports collection makefile for: sievelog
# Date created: 2010-07-26
# Whom: Jesse Kempf <jessekempf@gmail.com>
# $FreeBSD$
#
PORTNAME= sievelog
PORTVERSION= 1.0.1
CATEGORIES= sysutils python
MASTER_SITES= GOOGLE_CODE
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= jessekempf@gmail.com
COMMENT= Syslog message filter
USE_PYTHON= 2.5+
USE_PYDISTUTILS=yes
SUB_FILES= pkg-message
PLIST_FILES= bin/${PORTNAME} \
etc/${PORTNAME}.conf.example
MAN1= ${PORTNAME}.1
MAN5= ${PORTNAME}.conf.5
post-install:
@${CP} -p ${WRKSRC}/test.sv ${PREFIX}/etc/${PORTNAME}.conf.example
@${INSTALL_MAN} ${WRKSRC}/man/man1/${MAN1} ${MANPREFIX}/man/man1
@${INSTALL_MAN} ${WRKSRC}/man/man5/${MAN5} ${MANPREFIX}/man/man5
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
MD5 (sievelog-1.0.1.tar.gz) = f9a74569ab219705fef8579995340275
SHA256 (sievelog-1.0.1.tar.gz) = eadcd61dcc9e86abe3ecfe65ffbae880871d9559ac31a660122ea4269da81111
SIZE (sievelog-1.0.1.tar.gz) = 5482

View file

@ -0,0 +1,4 @@
An example sievelog configuration file has been dropped
in %%PREFIX%%/etc/sievelog.conf.example.
For more details, see http://sievelog.googlecode.com/.

View file

@ -0,0 +1,11 @@
Sievelog is a message dispatcher inspired by swatch but more focused on the
following problems:
* Having a clean syntax
* Directing a raw syslog stream to different files based on content
* Mailing out alerts based on content
* Being fast
Sievelog's syntax is as simple as "<regex>" -> /some/file.
WWW: http://sievelog.googlecode.com/