#!/bin/sh

TMP_FILE="/tmp/faxfile.ps"
cat > $TMP_FILE

# it should be possible to set and export the X DISPLAY environmental
# variable here, and provided X is set to allow connections to the X
# server (e.g xhost +localhost), efax-gtk can be launched in this
# faxfilter by calling up `efax-gtk $TMP_FILE'.  I don't really like
# this though, so I leave the next two lines commented out.
#export DISPLAY=
#efax-gtk $TMP_FILE

exit 0
