* doc-src/readme.txt
[claws.git] / tools / sylprint.rc
1 #
2 # sylprint.rc - Sylprint User Configuration File
3 #
4 # Modify here the values assigned to the variables to reflect 
5 # your personal default preferences. Some of the values can 
6 # still be changed from the command line options if required.
7 # This file must have exec permissions set and be located in
8 # sylprint.pl directory and/or ~/.sylpheed to be used.   
9 #
10 # (c) 2001 by Ricardo Mones Lastra <mones@aic.uniovi.es>
11 # This program is released under the GNU General Public License.
12 # See README.sylprint file for details and usage.
13 #
14           
15 #############################################################
16 # binaries location in your harddisk
17 #############################################################
18
19 # Uncomment this if you have enscript in a location which
20 # is not in your PATH.
21 #
22 #$ENS='/usr/bin/enscript';
23
24 # Printing command for text only output, uncomment and set
25 # the right full path if lpr is not in your PATH.
26 #
27 #$LPR='/usr/bin/lpr';
28
29 # PostScript previewer, gv by default, automagically
30 # guessed, uncomment this if gv is not in your PATH or
31 # you want to use another ps viewer.
32 #
33 #$GPR='/usr/local/bin/gv';
34
35 # Text previewer, gless by default :-) and guessed.
36 # Uncomment one and/or modify for using others. 
37 # Remember to launch your preferred text lister 
38 # in a *term if is a text program, as in the examples.
39 # The file name of the temporary preview file will be
40 # the last parameter passed to the command you set here.
41 #
42 #$TPR='vim -g -R -f';
43 #$TPR='xterm -e less';
44 #$TPR='/usr/bin/nedit';
45
46 #############################################################
47 # enscript related options
48 #############################################################
49
50 # The format of the header of the page added by enscript.
51 # Set to '' to disable header printing.
52 # Default value is '|%W|$%/$=' 
53 # (centered <date>, <pagenumber>/<totalpages> on the left).
54 #
55 $headerformat = '|%W|$%/$=';
56
57 # Size of the media lying on your's printer paper feeder.
58 # legal values are 'A4', 'Letter', etc.
59 # run "enscript --list-media" to see all possible values.
60 #
61 $papersize = 'A4';
62
63 # Charset for mail encoding. Default value is 'latin1'.
64 # Other possibilities: 'latin2', 'koi8', 'greek' and many
65 # more (but not all :-(. See enscript manpage.
66 #
67 $encoding = 'latin1';
68
69 # Font for the enscript generated page header. Useless
70 # unless $headerformat is set. Default is 'Times-Roman@11'.
71 # Number is font size in points.
72 #
73 $pageheaderfont = 'Times-Roman@11';
74
75 # Font for mail text (headers and body). 
76 # Default value is 'Courier@9/13'. First number is width
77 # and second is height (both in points).
78 #
79 $mailfont = 'Courier@9/13';
80
81 #############################################################
82 # processing options
83 #############################################################
84
85 # The name of the printer for printing mails.
86 # Default value is 'lp'. Others like 'lp0', 'lp1' may exist
87 # in your system.
88 #
89 $printer = 'lp';
90
91 # Set to '' if you don't want a line full of underscores
92 # separating the mail headers from the body, else set to
93 # the character you want to separate headers from body.
94 #
95 $separator = '_';
96
97 # Set to 0 if you dont't want to use enscript at all,
98 # and then mails will be sent to lpr directly.
99 #
100 $usenscript = 1;
101
102 # Set to 0 if you don't want the mail header names to be
103 # translated into your $LANG language.
104 #
105 $translate = 1;
106
107 # Set to 0 if you don't want mail signatures to be printed.
108 # Mail signatures are introduced by "--" and a carriage return. 
109 #
110 $signature = 1;
111
112 # Set to 0 if you don't want to print mail headers (From,
113 # To, and so on).
114 #
115 $headers = 1;
116
117 # Set to a quote starting symbol(s) (like '>') to enable
118 # quoted text removal from mail body. Set to '' to let
119 # all text be printed.
120 #
121 $remquoted = '';
122
123 # Set to 1 if you want the mail to be previewed before
124 # sending to printer.
125 #
126 $preview = 0;
127
128 # Set to 0 if you don't want to wrap lines in mail body
129 # or to a higher value to indicate the wrapping column.
130 # Unwrapped lines may not be printed when using lpr.
131 # Enscript has it's own cuting, so all text is printed,
132 # but words are broken at any position without mercy.
133 #            
134 $wrapping = 79;
135