Add man pages for capifax*

Thanks to Paul Slootman <paul@debian.org>.

Signed-off-by: Karsten Keil <kkeil@linux-pingi.de>
This commit is contained in:
Karsten Keil 2012-02-25 15:54:35 +01:00
parent 38b0a204df
commit 73fe43d7b5
3 changed files with 94 additions and 0 deletions

View File

@ -13,6 +13,7 @@ LDFLAGS = -L../capi20/.libs -L../capi20 $(all_libraries)
LDADD = -lcapi20
bin_PROGRAMS = capifax capifaxrcvd
man_MANS = capifax.1 capifaxrcvd.8
common = c20msg.c capi.c connect.c contr.c data.c id.c init.c fax.c

37
capifax/capifax.1 Normal file
View File

@ -0,0 +1,37 @@
.\" $Id: capifax.1,v 1.1 2002/07/04 11:30:59 paul Exp $
.\"
.\" CHECKIN $Date: 2002/07/04 11:30:59 $
.\"
.TH capifax 1
.SH NAME
capifax \- a FAX send application for CAPI
.SH SYNOPSIS
capifax [ -v ] [ -c calling_party_num ] [ -i station_ID ] [-h headline] dest_num filename
.SH DESCRIPTION
.B capifax
is an application to send faxes via CAPI; you need a CAPI capable ISDN
card with the appropriate drivers.
The final arguments must be the phone number of the receiving fax machine and the file to send. This file must be an SSF-File as generated by "gs -sDevice=cfax".
This stuff is based heavily on AVM's CAPI-adk for linux.
.SH OPTIONS
.TP
.BI -v
Be verbose.
.TP
.BI "-c" " calling_party_num"
the phone number used as the sender.
.TP
.BI "-i" " station_ID"
the sender's station ID. Typically the company name or similar.
.TP
.BI "-h" " headline"
title of sent document.
.SH AUTHOR
manpage written from C source by Paul Slootman <paul@debian.org>.

56
capifax/capifaxrcvd.8 Normal file
View File

@ -0,0 +1,56 @@
.\" $Id: capifaxrcvd.8,v 1.1 2002/07/04 11:30:59 paul Exp $
.\"
.\" CHECKIN $Date: 2002/07/04 11:30:59 $
.\"
.TH capifaxrcvd 8
.SH NAME
capifaxrcvd \- a FAX receive daemon for CAPI
.SH SYNOPSIS
capifaxrcvd [-i stationID] [-h header] [-c controller] [-l listenNumber] [-n notifyCmd] rcvDirectory
.SH DESCRIPTION
.B capifaxrcvd
is a daemon to receive faxes via CAPI; you need a CAPI capable ISDN
card with the appropriate drivers.
The final argument must be the directory in which the
received faxes are to be placed.
The filenames of the received faxes are of the form:
.br
f[fn]xxxtttttttt
.br
[fn] indicates the resolution (fine or normal),
.br
xxx indicated the number of pages,
.br
tttttttt is the (hexadecimal) timestamp of the fax
(seconds since the Unix epoch, 00:00 on January 1st, 1970 UTC).
The daemon will fork itself into the background.
This stuff is based heavily on AVM's CAPI-adk for linux.
.SH OPTIONS
.TP
.BI "-l" " listenNumber"
the phone number on which to receive faxes, i.e. the number to listen on.
.TP
.BI "-c" " controller"
Specify a specific controller number to use for receiving the faxes.
.TP
.BI "-i" " station_ID"
the station ID. Typically the company name or similar.
.TP
.BI "-h" " headline"
title of sent document. (?)
.TP
.BI "-n" " notifyCmd"
command to execute when a fax has been received.
It will be called with one argument, namely
the filename of the received fax (without the directory name).
.SH AUTHOR
manpage written from C source by Paul Slootman <paul@debian.org>.