3 # This script is an input filter for printcap printing on a unix machine. It
4 # uses the smbclient program to print the file to the specified smb-based
6 # For example you could have a printcap entry like this
8 # smb:lp=/dev/null:sd=/usr/spool/smb:sh:if=/usr/local/samba/smbprint
10 # which would create a unix printer called "smb" that will print via this
11 # script. You will need to create the spool directory /usr/spool/smb with
12 # appropriate permissions and ownerships for your system.
14 # Set these to the server and service you wish to print to
15 # In this example I have a WfWg PC called "lapland" that has a printer
16 # exported called "printer" with no password.
19 # Script further altered by hamiltom@ecnz.co.nz (Michael Hamilton)
20 # so that the server, service, and password can be read from
21 # a /usr/var/spool/lpd/PRINTNAME/.config file.
23 # Script further modified by Richard Sharpe to fix some things.
24 # Get rid of the -x on the first line, and add parameters
26 # -t now causes translate to be used when sending files
28 # Further modifications by Alfred Perlstein to fix some problems and
29 # improve the quality of the code (3-Dec-2001).
31 # More hacking by Richard Sharpe to improve portability. 9-Dec-2001.
33 # In order for this to work the /etc/printcap entry must include an
34 # accounting file (af=...):
37 # :cm=CD IBM Colorjet on 6th:\
38 # :sd=/var/spool/lpd/cdcolour:\
39 # :af=/var/spool/lpd/cdcolour/acct:\
40 # :if=/usr/local/etc/smbprint:\
44 # The /usr/var/spool/lpd/PRINTNAME/.config file should contain:
46 # service=PR_SHARENAME
54 #smbclient=/usr/pkg/bin/smbclient
55 # Assume that smbclient will be in the same place as smbprint
57 smbclient
="`dirname $0`/smbclient"
60 # The last parameter to the filter is the accounting file name.
61 # Extract the directory name from the file name.
62 # Concat this with /.config to get the config file.
66 spool_dir
=`dirname $acct_file`
67 config_file
=$spool_dir/.config
69 # Should read the following variables set in the config file:
77 # debugfile (optional)
80 if [ "x$password" = "x" ] ; then
84 if [ "x$username" = "x" ] ; then
88 while test $# -gt 0; do
94 *) # Bad Parameters, ignore them ...
101 if [ $TRANS -eq 1 ]; then
102 command="translate;$command";
106 ## Some security checks on the logfile if we are using it
108 ## make the directory containing the logfile is necessary
109 ## and set the permissions to be rwx for owner only
112 debugfile
="/tmp/smb-print/logfile"
113 logdir
=`dirname $debugfile`
114 if [ ! -d $logdir ]; then
115 mkdir
-m 0700 $logdir
119 ## check ownership. If I don't own it refuse to
120 ## create the logfile
122 if [ ! -O $logdir ]; then
123 echo "user running script does not own $logdir. Ignoring any debug options."
128 if [ -h $debugfile ]; then
129 echo "$debugful is a symlink. Turning off debugging!"
134 ## We should be safe at this point to create the log file
135 ## without fear of a symlink attack -- move on to more script work.
138 if [ "x$debug" = "x" ] ; then
139 debugfile
=/dev
/null debugargs
=
141 if [ $debug -eq 0 ] ; then
142 debugfile
=/dev
/null debugargs
=
144 set -x; exec >>$debugfile 2>&1
145 debugargs
="$debugfile."
146 #[ "x$debugsmb" = "x" ] || debugargs="$debugargs -d $debugsmb"
150 if [ "x$smbconf" != "x" ]; then
152 smbconf
="-s $smbconf"
156 if [ "x$IP" != "x" ]; then
162 if [ "x$debugargs" != "x" ]; then
164 debugargs
="-l $debugargs"
169 "\\\\$server\\$service" \