hi, you shouldn't have two fq parameters -- some solr params work like that, but fq doesn't
> http://172.20.1.33:8983/solr/select/?q=*:*&start=0&fq=EMAIL_HEADER_FROM:t...@mail.de&fq=EMAIL_HEADER_TO:t...@mail.de you need to combine it into a single param i.e. try putting it as an "OR" or "AND" if you're using the standard request handler: fq=EMAIL_HEADER_FROM:t...@mail.de%20or%20email_header_to:t...@mail.de or put something like + if you're using dismax (i think but i don't use it :) ) hope that helps, bec :)