]> git.ipfire.org Git - thirdparty/cups.git/blame - man/mime.types.man
Merge changes from CUPS 1.4svn-r7696.
[thirdparty/cups.git] / man / mime.types.man
CommitLineData
ef416fc2 1.\"
75bd9771 2.\" "$Id: mime.types.man 7670 2008-06-17 22:42:08Z mike $"
ef416fc2 3.\"
4.\" mime.types man page for the Common UNIX Printing System (CUPS).
5.\"
dd1abb6b 6.\" Copyright 2007-2008 by Apple Inc.
bd7854cb 7.\" Copyright 1997-2006 by Easy Software Products.
ef416fc2 8.\"
9.\" These coded instructions, statements, and computer programs are the
bc44d920 10.\" property of Apple Inc. and are protected by Federal copyright
11.\" law. Distribution and use rights are outlined in the file "LICENSE.txt"
12.\" which should have been included with this file. If this file is
13.\" file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 14.\"
dd1abb6b 15.TH mime.types 5 "Common UNIX Printing System" "17 June 2008" "Apple Inc."
ef416fc2 16.SH NAME
17mime.types \- mime type description file for cups
18.SH DESCRIPTION
19The \fImime.types\fR file defines the recognized file types.
20.LP
bd7854cb 21Additional file types can be added to \fImime.types\fR or
22(preferably) in additional files in the CUPS configuration
23directory with the extension ".types".
ef416fc2 24.LP
bd7854cb 25Each line in the \fImime.types\fR file is a comment, blank, or
26rule line. Comment lines start with the # character. Rule lines
27start with the MIME type name and are optionally followed by a
28series of file recognition rules that are used to automatically
29identify print and web files:
ef416fc2 30.br
31.nf
32
33 super/type rule [ ... ruleN]
34.fi
35The rules may be grouped using parenthesis, joined using "+" for a
36logical AND and "," or whitespace for a logical OR, and negated using
37"!".
38.SH RULES
39Rules take two forms - a filename extension by itself and functions with test
40values inside parenthesis. The following functions are available:
41.TP 5
42match("pattern")
43.br
44Pattern match on filename
45.TP 5
46ascii(offset,length)
47.br
48True if bytes are valid printable ASCII (CR, NL, TAB, BS, 32-126)
49.TP 5
50printable(offset,length)
51.br
52True if bytes are printable 8-bit chars (CR, NL, TAB, BS, 32-126, 128-254)
53.TP 5
dd1abb6b
MS
54priority(number)
55.br
56Specifies the relative priority of this MIME type. The default priority is 100.
57Larger values have higher priority while smaller values have lower priority.
58.TP 5
ef416fc2 59string(offset,"string")
60.br
61True if bytes are identical to string
62.TP 5
63istring(offset,"string")
64.br
65True if a case-insensitive comparison of the bytes is identical
66.TP 5
67char(offset,value)
68.br
69True if byte is identical
70.TP 5
71short(offset,value)
72.br
73True if 16-bit integer is identical
74.TP 5
75int(offset,value)
76.br
77True if 32-bit integer is identical
78.TP 5
79locale("string")
80.br
81True if current locale matches string
82.TP 5
83contains(offset,range,"string")
84.br
85True if the range contains the string
86.SH STRING CONSTANTS
87String constants can be specified inside quotes ("") for strings
88containing whitespace and angle brackets (<>) for hexadecimal
89strings.
90.SH SEE ALSO
bd7854cb 91\fIclasses.conf(5)\fR, \fIcupsd(8)\fR, \fIcupsd.conf(5)\fR,
92\fImime.convs(5)\fR, \fIprinters.conf(5)\fR,
93.br
94http://localhost:631/help
ef416fc2 95.SH COPYRIGHT
dd1abb6b 96Copyright 2007-2008 by Apple Inc.
ef416fc2 97.\"
75bd9771 98.\" End of "$Id: mime.types.man 7670 2008-06-17 22:42:08Z mike $".
ef416fc2 99.\"