[567] | 1 | # $Id$ |
---|
| 2 | |
---|
[576] | 3 | Tea4CUPS : Tee for CUPS |
---|
[567] | 4 | |
---|
| 5 | This program is free software; you can redistribute it and/or modify |
---|
| 6 | it under the terms of the GNU General Public License as published by |
---|
| 7 | the Free Software Foundation; either version 2 of the License, or |
---|
| 8 | (at your option) any later version. |
---|
| 9 | |
---|
| 10 | This program is distributed in the hope that it will be useful, |
---|
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 13 | GNU General Public License for more details. |
---|
| 14 | |
---|
| 15 | You should have received a copy of the GNU General Public License |
---|
| 16 | along with this program; if not, write to the Free Software |
---|
| 17 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. |
---|
| 18 | |
---|
| 19 | ============================================================================= |
---|
| 20 | |
---|
[576] | 21 | Tea4CUPS is the equivalent of the *nix command 'tee', but as a CUPS |
---|
[567] | 22 | backend. |
---|
| 23 | |
---|
[576] | 24 | Tea4CUPS behaves just like any other CUPS backend, but allows you to |
---|
[567] | 25 | transparently send print jobs' datas to any number of outputs : other |
---|
| 26 | CUPS backends, files or pipes. |
---|
| 27 | |
---|
| 28 | This for example allows you to output the same print job on several |
---|
| 29 | printers at the same time, which is not possible with CUPS. |
---|
| 30 | |
---|
| 31 | Another possibility would be for example to send the same document to |
---|
| 32 | a printer, a PDF generator, a Fax, and as an attachment to an email |
---|
| 33 | message, all of this by printing it a single time. |
---|
| 34 | |
---|
[586] | 35 | To help your own commands, Tea4CUPS makes available as part of the |
---|
| 36 | environment several variables which can be used as part of the |
---|
| 37 | commands you use : |
---|
| 38 | |
---|
| 39 | TEAPRINTERNAME : The print queue name. |
---|
| 40 | TEADIRECTORY : Tea4CUPS output directory. |
---|
| 41 | TEADATAFILE : Full name of Tea4CUPS work file (in $TEADIRECTORY). |
---|
| 42 | TEAJOBSIZE : Job's size in bytes. |
---|
| 43 | TEAMD5SUM : MD5 sum of the job's datas. |
---|
| 44 | TEACLIENTHOST : Client's hostname or IP address. |
---|
| 45 | TEAJOBID : Job's Id. |
---|
| 46 | TEAUSERNAME : Name of the user who launched the print job. |
---|
| 47 | TEATITLE : Job's title. |
---|
| 48 | TEACOPIES : Number of copies requested. |
---|
| 49 | TEAOPTIONS : Options of the print job. |
---|
| 50 | TEAINPUTFILE : Print job's data file or empty when job read from stdin. |
---|
| 51 | |
---|
[590] | 52 | In the case you want to use both Tea4CUPS and PyKota, you MUST install |
---|
| 53 | PyKota v1.22alpha2 or higher to avoid a race condition. |
---|
| 54 | |
---|
[567] | 55 | ============================================================================= |
---|
| 56 | |
---|
| 57 | Installation : |
---|
| 58 | -------------- |
---|
| 59 | |
---|
[591] | 60 | 0 - Download Tea4CUPS from : |
---|
| 61 | |
---|
| 62 | http://www.librelogiciel.com/software/Tea4CUPS/action_Presentation |
---|
| 63 | |
---|
[576] | 64 | 1 - Copy the 'tea4cups' command into CUPS' backend directory, |
---|
[567] | 65 | for example : |
---|
| 66 | |
---|
[576] | 67 | $ cp tea4cups /usr/lib/cups/backend |
---|
[567] | 68 | |
---|
| 69 | 2 - Restart CUPS in order for this new backend to be detected. |
---|
| 70 | |
---|
| 71 | 3 - Either from CUPS' web interface, add new printers with |
---|
[576] | 72 | 'Tea4CUPS managed' in front of the device's name. |
---|
[567] | 73 | |
---|
| 74 | Or by directly modifying CUPS' printers.conf file, prepend |
---|
[576] | 75 | each DeviceURI value with 'tea4cups://', and restart CUPS. |
---|
[567] | 76 | |
---|
[576] | 77 | 4 - Copy tea4cups.conf into CUPS' configuration directory (where |
---|
[567] | 78 | cupsd.conf resides) : |
---|
| 79 | |
---|
[576] | 80 | $ cp tea4cups.conf /etc/cups/ |
---|
[567] | 81 | |
---|
[576] | 82 | 5 - Modify tea4cups.conf to suit your needs. Several examples |
---|
[567] | 83 | are included. |
---|
| 84 | |
---|
| 85 | 6 - There's no 6 ! |
---|
| 86 | |
---|
| 87 | ============================================================================= |
---|
| 88 | |
---|
| 89 | Troubleshooting : |
---|
| 90 | ----------------- |
---|
| 91 | |
---|
| 92 | 1 - Set "LogLevel debug2" in CUPS' cupsd.conf |
---|
| 93 | |
---|
| 94 | 2 - Restart CUPS. |
---|
| 95 | |
---|
[576] | 96 | 3 - Set "debug: yes" in the [global] section of tea4cups.conf |
---|
[567] | 97 | |
---|
| 98 | 4 - Print something on a print queue managed |
---|
[576] | 99 | by Tea4CUPS. |
---|
[567] | 100 | |
---|
| 101 | 5 - Look at CUPS' error_log file for diagnostic and error messages. |
---|
| 102 | |
---|
| 103 | ============================================================================= |
---|
[591] | 104 | |
---|
| 105 | CUPS (Common UNIX(r) Printing System) is trademark property of Easy Software |
---|
| 106 | Products. |
---|
| 107 | |
---|
| 108 | You can download CUPS from : |
---|
| 109 | |
---|
| 110 | http://www.cups.org |
---|
| 111 | |
---|
| 112 | ============================================================================= |
---|
[567] | 113 | |
---|
| 114 | Please e-mail bugs to : alet@librelogiciel.com (Jerome Alet) |
---|