/etc/pfm.conf is in pfm 2.0.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # pfm.conf
# This is the configuration file of Postgres Forms (pfm) on UNIX platforms.
# Written by Willem Herremans.
# pfm.conf is installed either in pfm's installation directory or in
# /etc. If pfm.tcl does not find it in its installation directory, it
# looks for it in /etc.
# The syntax of this file is the following:
#
# - Every empty line is ignored;
#
# - Every line starting with a "#" is a comment line;
#
# - Every other line should be a Tcl list (i.e. a space separated list)
# containg 2 items where the first item is the name of a configuration
# parameter and the second item its value. If a value contains spaces
# enclose it in { and }.
#
# docDir: the directory in which the package documentation
# is installed. If it is a relative pathname, it is assumed to be
# relative to the installation directory.
docDir /usr/share/doc/pfm/html
# licenseDir: the directory which contains the text of the GNU licence
# and the help texts for the options. If it is a relative pathname,
# it is assumed to be relative to the installation directory.
licenseDir /usr/share/pfm/license
# exampleDir: the directory which contains the example databases. If
# it is a relative pathname, it is assumed to be relative to the
# installation directory.
exampleDir /usr/share/pfm/examples
# languagdeDir: the directory whcih contains the user interface
# strings for all languages.
languageDir /usr/share/pfm/msgs
# defaultBrowser: the default value for the "browser" option.
defaultBrowser {sensible-browser %s}
# defaultPrintcmd: the default value for the "printcmd" option.
defaultPrintcmd {lpr}
|