view test.bash @ 21:09564d4acd9e stable-1-0-8

patches from Marco d'Itri for postfix
author Carl Byington <carl@five-ten-sg.com>
date Fri, 24 Dec 2010 15:13:18 -0800
parents 75e1a9bcbc2e
children
line wrap: on
line source

#!/bin/bash

# build the test.cf file
make -f Makefile.test test.cf

# start the milter
pid=/var/run/sm-archive.pid
echo start the milter
mkdir -p /var/run/smarchive
chmod 700 /var/run/smarchive
#chown smarchive:smarchive /var/run/smarchive
[ -f "$pid" ] && mv -f $pid $pid.save
valgrind --leak-check=full --show-reachable=yes src/smarchive -d 10 -p local:/var/run/smarchive/smarchive.sock
sleep 5
P2=`cat $pid`
[ -f "$pid.save" ] && mv -f $pid.save $pid
echo started smarchive milter as process $P2

/usr/lib/sendmail -bd -Ctest.cf -Lsmarchive
sleep 5
P3=`head -1 /var/run/sm-test.pid`
echo started sendmail as process $P3

echo  "eventually, run the following two kill commands"
echo  kill -SIGINT $P2
echo  kill -KILL $P3