view tests/hostname-stdin/test.tpl @ 396:6f2a8113a79e

Fixed conf.c: read_lval().
author markus schnalke <meillo@marmaro.de>
date Sat, 18 Feb 2012 19:57:39 +0100 (2012-02-18)
parents 60bb2dbe2866
children
line wrap: on
line source
#!/bin/sh

# path to the masqmail executable
mm_bin=../../src/masqmail

hfrom="\"Fritz Meier\" <$LOGNAME@RECV_HOST>"
hto="$hfrom"
to=$LOGNAME@RECV_HOST
hsubject="Masqmail test: hostname-stdin"


# Testing with rcpt on cmd line
# (dot does end)
#
# the command to be run:
cmd="$mm_bin -C ./test.conf $to"

$cmd <<EOF
From: $hfrom
To: $hto
Subject: $hsubject

Hallo Fritz!
..
there is a dot above (Yes, one and not two).

command was: $cmd

Fritz
.

EOF


# Testing with rcpt on cmd line with -oi option
# (dot does not end)
#
# the command to be run:
cmd="$mm_bin -C ./test.conf -oi $to"

$cmd <<EOF
From: $hfrom
To: $hto
Subject: $hsubject

Hallo Fritz!
.
there is a dot above.

command was: $cmd

Fritz

EOF


# Testing with rcpt read from headers (-t option)
# (dot does end)
#
# the command to be run:
cmd="$mm_bin -C ./test.conf -t"

$cmd <<EOF
From: $hfrom
To: $hto
Subject: $hsubject

Hallo Fritz!
..
there is a dot above.

command was: $cmd

Fritz
.

EOF