Skip to content

Instantly share code, notes, and snippets.

@kscc25
Created October 30, 2017 10:55
Show Gist options
  • Save kscc25/f8ff3998165c880c64458c47f496f278 to your computer and use it in GitHub Desktop.
Save kscc25/f8ff3998165c880c64458c47f496f278 to your computer and use it in GitHub Desktop.
{
"settings": {
"analysis": {
"analyzer": {
"my_email_analyzer": {
"type": "custom",
"tokenizer": "uax_url_email",
"filter": ["lowercase", "stop"]
}
}
}
},
"mappings": {
"message": {
"properties": {
"content": {
"type": "string",
"analyzer": "my_email_analyzer"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment