Hello,
I'm trying to use the logstash-input-imap plugin to parse email. I can read plain text emails OK but with an HTML email I get a page of HTML code as the message, rather than the text.
I have set the content_type to text/html - am I missing something here? This is my input:
input {
imap {
host => "server.domain.com"
password => "*"
user => ""
tags => "some_tag"
check_interval => 30 # Specified in seconds
fetch_count => 100
type => "mail"
content_type => "text/html"
}
}
Thank you