how can i write a rule to get xml attach files from an e-mail?
Headers:
Content-Type: multipart/mixed;
boundary=--boundary_6_9e03550b-93b5-4e32-88c8-2a1cd6037099
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: base64
Content-Type: application/octet-stream; name=filename.xml
Content-Transfer-Encoding: base64
Content-Type: application/octet-stream; name=filename.pdf
Content-Transfer-Encoding: base64
I tried,
header FILE_XML Content-type =~ /xml/i
header FILE_XML Content-type =~ /\.xml/i
rawbody FILE_XML /xml/
rawbody FILE_XML /\.xml/i
body FILE_XML /xml/i
none took effect....