After reading up on Uniform Type Identifiers, I think I have a solution - or at least some sort of workaround. This requires editing the Microsoft Word package. <br><br>1. Open the Microsoft Word package (Action -> Show Package Contents) <br>
2. Go to Contents and open Info.plist in a plist editor (I used Panic Coda) <br>
3. Remove lines 703-704 where it reads <key>public.mime-type</key><string>application/msword</string> <br>
4. Remove any caches/whatever (I used Onyx) and reboot. <br><br>Further details on Step #3: <br><br>There are two instances where Microsoft Word defines application/msword. On my copy of Word, it defines it at line 684-685 and line 703. Line 685 refers to the document type .doc while line 703-704 refers to .dot. <br><br>Obviously, I want the MIME type application/msword to refer to .doc (and don't really care too much about .dot files). <br><br>Before (lines 688-706): <br><br> <dict> <br>
<key>UTTypeConformsTo</key> <br>
<string>public.data</string> <br>
<key>UTTypeDescription</key> <br>
<string>Microsoft Word 97 - 2004 template</string> <br>
<key>UTTypeIconFile</key> <br>
<string>W8TN.icns</string> <br>
<key>UTTypeIdentifier</key> <br>
<string>com.microsoft.word.dot</string> <br>
<key>UTTypeTagSpecification</key> <br>
<dict> <br>
<key>com.apple.ostype</key> <br>
<string>W8TN</string> <br>
<key>public.filename-extension</key> <br>
<string>dot</string> <br>
<key>public.mime-type</key> <br>
<string>application/msword</string> <br>
</dict> <br>
</dict> <br><br>After: <br><br> <dict> <br>
<key>UTTypeConformsTo</key> <br>
<string>public.data</string> <br>
<key>UTTypeDescription</key> <br>
<string>Microsoft Word 97 - 2004 template</string> <br>
<key>UTTypeIconFile</key> <br>
<string>W8TN.icns</string> <br>
<key>UTTypeIdentifier</key> <br>
<string>com.microsoft.word.dot</string> <br>
<key>UTTypeTagSpecification</key> <br>
<dict> <br>
<key>com.apple.ostype</key> <br>
<string>W8TN</string> <br>
<key>public.filename-extension</key> <br>
<string>dot</string> <br>
</dict> <br>
</dict> <br><br>Don't know if this will work anywhere else, but it solved my problem and Safari no longer mysteriously adds .dot to my .doc downloads.
>> Stay informed about: Safari appends .dot to all .doc files after Word 2008