File: gm-fax_doc

package info (click to toggle)
gnumed-client 1.8.5%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 37,672 kB
  • sloc: python: 126,459; javascript: 6,113; sh: 1,192; xml: 36; makefile: 33
file content (54 lines) | stat: -rwxr-xr-x 1,331 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/sh

#------------------------------------------------------
# This file is used by GNUmed to fax documents.
#
# It will be called with the fax number and
# a list of files to be sent.
#
# The fax number can be "EMPTY" in which case
# this script (or the fax program) will have to
# retrieve the receiver number from the user.
#
# GNUmed will simply pass any files selected by the
# user for faxing which means they can be of any
# type. Hence the fax program (or this script) will
# need to convert them to a format suitable
# for faxing, say, g3-tiff.
#
# Whichever fax program you invoke needs to handle
# all tasks related to actually, technically putting
# the fax on the wire.
#
# The script must return 0 on success.
#
# GPL v2
#------------------------------------------------------
FAXNUMBER="$1"

if test $# -lt 2 ; then
	echo "${0}:"
	echo " No files passed in for faxing."
	echo " See [${0}] for instructions."
	exit 0
fi

shift;
FILES2FAX="$@"


# roger_cli
# can send PDF or PS, one file, several pages
##roger_cli --debug --send-fax --number=${FAXNUMBER} --file=${FILES2FAX}


# hylafax
# can take PS, TIFF, ASCII, PDF, tries to convert other formats
##sendfax -v -v -D -G -n -d ${FAXNUMBER} ${FILES2FAX}


echo "${0}:"
echo " ERROR: No fax handler set up."
echo " ERROR: See [${0}] for instructions."

exit 1