Overview
| Comment: | also parse Sender header |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9c12e26fb645fc24ecc19b945478a99a |
| User & Date: | arcade on 2024-05-22 19:09:46.823 |
| Other Links: | manifest | tags |
Context
|
2024-05-22
| ||
| 19:09 | add Cargo.lock check-in: de3087f832 user: arcade tags: trunk | |
| 19:09 | also parse Sender header check-in: 9c12e26fb6 user: arcade tags: trunk | |
| 15:11 | fix parsing a little... check-in: 03fe0265ac user: arcade tags: trunk | |
Changes
Modified src/main.rs
from [2053558805]
to [921384dec4].
| ︙ | |||
95 96 97 98 99 100 101 | 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | - + |
} else if let Some(thread) = mail.thread_name() {
reply.push(format!("**Thread:** `{}`", thread).into());
}
if let Some(from) = mail.from() {
reply.push(format!("**From:** `{:?}`", address_into_iter(from).collect::<Vec<_>>().join(", ")).into());
}
if let Some(sender) = mail.sender() {
|
| ︙ |