1 | # $Id: mailcap,v 1.1 2001-04-30 20:08:03 rbasch Exp $ |
---|
2 | |
---|
3 | image/*; \ |
---|
4 | /usr/athena/bin/athrun mimeutils do-image -t '%t' %s; \ |
---|
5 | test=/usr/athena/bin/athrun mimeutils test-image -t '%t' |
---|
6 | |
---|
7 | video/*; \ |
---|
8 | /usr/athena/bin/athrun mimeutils do-video -t '%t' %s; \ |
---|
9 | test=/usr/athena/bin/athrun mimeutils test-video -t '%t' |
---|
10 | |
---|
11 | audio/*; \ |
---|
12 | /usr/athena/bin/athrun mimeutils do-audio -t '%t' %s; \ |
---|
13 | test=/usr/athena/bin/athrun mimeutils test-audio -t '%t' |
---|
14 | |
---|
15 | application/mac-binhex40; \ |
---|
16 | /usr/athena/bin/athrun mimeutils do-binhex %s; \ |
---|
17 | needsterminal |
---|
18 | |
---|
19 | application/msword; \ |
---|
20 | /usr/athena/bin/athrun mimeutils do-msword %s; \ |
---|
21 | needsterminal |
---|
22 | application/x-msword; \ |
---|
23 | /usr/athena/bin/athrun mimeutils do-msword %s; \ |
---|
24 | needsterminal |
---|
25 | |
---|
26 | application/excel; \ |
---|
27 | /usr/athena/bin/athrun mimeutils do-excel %s; \ |
---|
28 | test=/usr/athena/bin/athrun mimeutils test-xdisplay |
---|
29 | application/x-excel; \ |
---|
30 | /usr/athena/bin/athrun mimeutils do-excel %s; \ |
---|
31 | test=/usr/athena/bin/athrun mimeutils test-xdisplay |
---|
32 | application/msexcel; \ |
---|
33 | /usr/athena/bin/athrun mimeutils do-excel %s; \ |
---|
34 | test=/usr/athena/bin/athrun mimeutils test-xdisplay |
---|
35 | application/x-msexcel; \ |
---|
36 | /usr/athena/bin/athrun mimeutils do-excel %s; \ |
---|
37 | test=/usr/athena/bin/athrun mimeutils test-xdisplay |
---|
38 | application/vnd.ms-excel; \ |
---|
39 | /usr/athena/bin/athrun mimeutils do-excel %s; \ |
---|
40 | test=/usr/athena/bin/athrun mimeutils test-xdisplay |
---|
41 | |
---|
42 | application/postscript; \ |
---|
43 | /usr/athena/bin/athrun mimeutils do-postscript %s; \ |
---|
44 | test=/usr/athena/bin/athrun mimeutils test-xdisplay |
---|
45 | |
---|
46 | application/pdf; \ |
---|
47 | /usr/athena/bin/athrun mimeutils do-pdf %s; \ |
---|
48 | test=/usr/athena/bin/athrun mimeutils test-xdisplay |
---|
49 | |
---|
50 | application/x-dvi; \ |
---|
51 | /usr/athena/bin/xdvi %s; \ |
---|
52 | test=/usr/athena/bin/athrun mimeutils test-xdisplay |
---|
53 | |
---|
54 | application/x-ez; \ |
---|
55 | /usr/andrew/bin/ez %s; \ |
---|
56 | test=/usr/athena/bin/athrun mimeutils test-xdisplay |
---|
57 | |
---|
58 | application/x-framemaker; \ |
---|
59 | /usr/athena/bin/athrun mimeutils do-framemaker %s; \ |
---|
60 | test=/usr/athena/bin/athrun mimeutils test-framemaker |
---|
61 | |
---|
62 | # Note that we could supply the name to do-unknown via -n %{name}, |
---|
63 | # but that does not work with pine's default configuration, which |
---|
64 | # disables parameter substitution for security reasons. |
---|
65 | application/octet-stream; \ |
---|
66 | /usr/athena/bin/athrun mimeutils do-unknown %s; \ |
---|
67 | needsterminal |
---|
68 | application/octet-string; \ |
---|
69 | /usr/athena/bin/athrun mimeutils do-unknown %s; \ |
---|
70 | needsterminal |
---|
71 | |
---|
72 | application/*; \ |
---|
73 | /usr/athena/bin/athrun mimeutils do-application -t '%t' %s; \ |
---|
74 | test=/usr/athena/bin/athrun mimeutils test-application -t '%t' |
---|