mirror of
https://github.com/mailscope/kumomta.git
synced 2026-08-19 19:08:17 +00:00
24 lines
694 B
Markdown
24 lines
694 B
Markdown
# list
|
|
|
|
```lua
|
|
local list = addressheader.list
|
|
```
|
|
|
|
Returns a lua table consisting of one entry per address in the header. Each
|
|
entry is a single simple address object that has `domain`, `user`, `email` and
|
|
`name` fields with the same semantics as `addressheader`.
|
|
|
|
```lua
|
|
for _, address in ipairs(msg:to_header().list) do
|
|
print('to entry', address)
|
|
-- prints something like:
|
|
-- to entry {"name":null,"address":"user@example.com"}
|
|
-- to entry {"name":"John Smith","address":"john.smith@example.com"}
|
|
end
|
|
```
|
|
|
|
{{since('2026.04.09-ea3b2a9b')}}
|
|
|
|
The `user` field on each list entry now returns the *normalized/decoded*
|
|
local part. See [addressheader.user](user.md) for details.
|