« Soonr ではテキストファイルが表示できない | メイン | AUCTEX で dvipdfmx と Preview.app を起動 »
2009年1月26日
Thunderbird の添付ファイルを開くアプリケーションの変更
症状:Thunderbird (Mac版) でPDFを開こうとすると、アプリケーションのメニューに Acrobat だけが出て、Preview が選択できない。環境設定で変更しようとしても、新しいエントリが追加できない。
対応:~/Library/Thunderbird/Profiles/なんとか.default/mimeType.rdf を編集する。
<?xml version="1.0"?>
<RDF:RDF xmlns:NC="http://home.netscape.com/NC-rdf#"
xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<RDF:Seq RDF:about="urn:mimetypes:root">
<RDF:li RDF:resource="urn:mimetype:application/pdf"/>
(中略)
</RDF:Seq>
<RDF:Description RDF:about="urn:mimetype:application/pdf"
NC:description="Portable Document Format"
NC:value="application/pdf"
NC:fileExtensions="pdf"
NC:editable="true">
<NC:handlerProp RDF:resource="urn:mimetype:handler:application/pdf"/>
</RDF:Description>
<RDF:Description RDF:about="urn:mimetype:handler:application/pdf"
NC:useSystemDefault="false"
NC:handleInternal="false"
NC:alwaysAsk="true"
NC:saveToDisk="false">
<NC:externalApplication RDF:resource="urn:mimetype:externalApplication:application/pdf"/>
</RDF:Description>
<RDF:Description RDF:about="urn:mimetype:externalApplication:application/pdf"
NC:prettyName="Preview"
NC:path="/Applications/Preview.app" />
(後略)
投稿者 hattori : 2009年1月26日 15:58
トラックバック
このエントリーのトラックバックURL:
http://www.tom.sfc.keio.ac.jp/~hattori/mt/mt-tb.cgi/149