The Mailmunge email filtering framework
https://www.mailmunge.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
406 B
20 lines
406 B
#!/bin/sh |
|
ROCKY=rocky |
|
if test "`uname -m`" = 'armv7l'; then |
|
# Cannot run Rocky on Raspberry Pi |
|
ROCKY= |
|
fi |
|
EXITCODE=0 |
|
|
|
cd `dirname $0` |
|
for os in buster bullseye $ROCKY; do |
|
for mta in postfix sendmail; do |
|
echo "RUNNING TESTS: $mta $os" |
|
./run-regression-tests-on-docker $mta $os "$@" |
|
if test "$?" != 0 ; then |
|
EXITCODE=$? |
|
fi |
|
done |
|
done |
|
|
|
exit $EXITCODE
|
|
|