Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.next.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ Thanks, you're awesome :-) -->

#### Added

* Added `volume.*` as beta field set. #2269
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

your changelog is outdated, we have released a new version since then

* Advanced `process.env_vars` to GA. #2315
* Advanced `process.io` and `process.tty` fields to GA. #2317
* Added `threat.indicator.id`. #2324
* Added `process.group` to generated schemas. #2335
* Added `*.domain` fields to ECS `email`. #2392

#### Improvements

* Define base encoding of `x509.serial_number`. #2383
Expand Down
60 changes: 60 additions & 0 deletions schemas/email.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,16 @@
normalize:
- array

- name: bcc.domain
level: extended
type: keyword
short: Email domain of BCC recipients.
description: >
The domain of the BCC recipients.
example: "example.com"
normalize:
- array

- name: cc.address
level: extended
type: keyword
Expand All @@ -90,6 +100,16 @@
normalize:
- array

- name: cc.domain
level: extended
type: keyword
short: Email domain of CC recipients.
description: >
The domain of the CC recipients.
example: "example.com"
normalize:
- array

- name: content_type
level: extended
type: keyword
Expand Down Expand Up @@ -126,6 +146,16 @@
normalize:
- array

- name: from.domain
level: extended
type: keyword
short: The sender's email domain.
description: >
The domain of the email sender.
example: "example.com"
normalize:
- array
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why it’s an array?


- name: local_id
level: extended
type: keyword
Expand Down Expand Up @@ -164,6 +194,16 @@
normalize:
- array

- name: reply_to.domain
level: extended
type: keyword
short: Email domain of Reply To address.
description: >
The domain of the Reply To address.
example: "example.com"
normalize:
- array

- name: sender.address
level: extended
type: keyword
Expand All @@ -172,6 +212,16 @@
Per RFC 5322, specifies the address responsible for the actual transmission of
the message.
- name: sender.domain
level: extended
type: keyword
short: Email domain of sender address.
description: >
The domain of the sender address.
example: "example.com"
normalize:
- array
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the same question - why it’s an array


- name: subject
level: extended
type: keyword
Expand All @@ -193,6 +243,16 @@
normalize:
- array

- name: to.domain
level: extended
type: keyword
short: The recipient's email domain.
description: >
The domain of the email recipient.
example: "example.com"
normalize:
- array

- name: x_mailer
level: extended
type: keyword
Expand Down