I'm looking to index some outlook extracted messages *.msg I notice by default msg isn't one of the defaults so I tried the following:
java -classpath dist/solr-core-4.10.3.jar -Dtype=application/vnd.ms-outlook org.apache.solr.util.SimplePostTool C:/temp/samplemsg/*.msg That didn't work However curl did: curl " http://localhost:8983/solr/update/extract?commit=true&overwrite=true&literal.id=000000006252671B765A1748992DF1A6403BDF81A4A15E00" -F "myfile=@000000006252671B765A1748992DF1A6403BDF81A4A15E00.msg" My question is why does the second work and not the first?