blob: c0ed8a66f3e82c2d3cf7b7e5b287dbbb7e76712f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/sh
# This is a rudimentary tests to see if fetchmail can parse a trivial
# configuration and dump it in human-readable and machine-readable form.
set -e
trap 'rm -f t.rc.$$' 0
cp "${srcdir}/t.rc" t.rc.$$
chmod 0400 t.rc.$$
./fetchmail -V -f t.rc.$$ >/dev/null
./fetchmail --configdump -f t.rc.$$ >/dev/null
|