2006-07-07 [colin] 2.3.1cvs70
[claws.git] / tools / sylprint.rc
blobcbbf0b3ee56375d01ac8d3d95117deca5003ca06
2 # sylprint.rc - Sylprint User Configuration File
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-claws to be used.   
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.
14           
15 #############################################################
16 # binaries location in your harddisk
17 #############################################################
19 # Uncomment this if you have enscript in a location which
20 # is not in your PATH.
22 #$ENS='/usr/bin/enscript';
24 # Printing command for text only output, uncomment and set
25 # the right full path if lpr is not in your PATH.
27 #$LPR='/usr/bin/lpr';
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.
33 #$GPR='/usr/local/bin/gv';
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.
42 #$TPR='vim -g -R -f';
43 #$TPR='xterm -e less';
44 #$TPR='/usr/bin/nedit';
46 #############################################################
47 # enscript related options
48 #############################################################
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).
55 $headerformat = '|%W|$%/$=';
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.
61 $papersize = 'A4';
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.
67 $encoding = 'latin1';
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.
73 $pageheaderfont = 'Times-Roman@11';
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).
79 $mailfont = 'Courier@9/13';
81 #############################################################
82 # processing options
83 #############################################################
85 # The name of the printer for printing mails.
86 # Default value is 'lp'. Others like 'lp0', 'lp1' may exist
87 # in your system.
89 $printer = 'lp';
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.
95 $separator = '_';
97 # Set to 0 if you dont't want to use enscript at all,
98 # and then mails will be sent to lpr directly.
100 $usenscript = 1;
102 # Set to 0 if you don't want the mail header names to be
103 # translated into your $LANG language.
105 $translate = 1;
107 # Set to 0 if you don't want mail signatures to be printed.
108 # Mail signatures are introduced by "--" and a carriage return. 
110 $signature = 1;
112 # Set to 0 if you don't want to print mail headers (From,
113 # To, and so on).
115 $headers = 1;
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.
121 $remquoted = '';
123 # Set to 1 if you want the mail to be previewed before
124 # sending to printer.
126 $preview = 0;
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;