wok annotate postgrey/receipt @ rev 1631
kbd-busybox: can't build on virtual systems !
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Oct 23 20:31:20 2008 +0000 (2008-10-23) |
parents | |
children | bd6010223726 |
rev | line source |
---|---|
pascal@1211 | 1 # SliTaz package receipt. |
pascal@1211 | 2 |
pascal@1211 | 3 PACKAGE="postgrey" |
pascal@1211 | 4 VERSION="1.32" |
pascal@1211 | 5 CATEGORY="network" |
pascal@1211 | 6 SHORT_DESC="Postfix policy server implementing greylisting." |
pascal@1211 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1211 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@1211 | 9 WEB_SITE="http://postgrey.schweikert.ch/" |
pascal@1211 | 10 WGET_URL="$WEB_SITE/pub/$TARBALL" |
pascal@1211 | 11 CONFIG_FILES="/etc/postgrey" |
pascal@1211 | 12 DEPENDS="postfix perl db perl-net-server perl-io-multiplex perl-berkeleydb" |
pascal@1211 | 13 |
pascal@1211 | 14 |
pascal@1211 | 15 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1211 | 16 genpkg_rules() |
pascal@1211 | 17 { |
pascal@1211 | 18 mkdir -p $fs/usr/bin $fs/etc/postfix $fs/var/spool/postfix/postgrey |
pascal@1211 | 19 cp $src/contrib/postgreyreport $src/postgrey $fs/usr/bin |
pascal@1211 | 20 cp $src/postgrey_whitelist* $fs/etc/postfix |
pascal@1211 | 21 cp -a stuff/etc $fs |
pascal@1211 | 22 } |
pascal@1211 | 23 |
pascal@1211 | 24 # Pre and post install commands for Tazpkg. |
pascal@1211 | 25 post_install() |
pascal@1211 | 26 { |
pascal@1211 | 27 ( cd $1/ ; cpio -o -H newc | gzip -9 ) > \ |
pascal@1211 | 28 $1/$INSTALLED/$PACKAGE/volatile.cpio.gz <<EOT |
pascal@1211 | 29 $(cd $1/ ; find etc/postgrey -type f) |
pascal@1211 | 30 EOT |
pascal@1211 | 31 chown postfix /var/spool/postfix/postgrey |
pascal@1211 | 32 cat <<EOF |
pascal@1211 | 33 ---- |
pascal@1211 | 34 To use $PACKAGE with postfix, add check_policy_service inet:127.0.0.1:60000 in |
pascal@1211 | 35 smtpd_recipient_restrictions of /etc/postfix/main.cf, i.e: |
pascal@1211 | 36 |
pascal@1211 | 37 smtpd_recipient_restrictions = |
pascal@1211 | 38 .... |
pascal@1211 | 39 check_policy_service inet:127.0.0.1:60000, |
pascal@1211 | 40 permit |
pascal@1211 | 41 |
pascal@1211 | 42 To start $PACKAGE server you can run : |
pascal@1211 | 43 |
pascal@1211 | 44 /etc/init.d/$PACKAGE start |
pascal@1211 | 45 |
pascal@1211 | 46 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf |
pascal@1211 | 47 ---- |
pascal@1211 | 48 EOF |
pascal@1211 | 49 } |
pascal@1211 | 50 |
pascal@1211 | 51 repack_cleanup() |
pascal@1211 | 52 { |
pascal@1211 | 53 zcat $INSTALLED/$PACKAGE/volatile.cpio.gz | ( cd $1 ; cpio -id ) |
pascal@1211 | 54 } |