diff --git a/src/modules/cli/pst/mod.rs b/src/modules/cli/pst/mod.rs index 39fb4e2..a29bd0a 100644 --- a/src/modules/cli/pst/mod.rs +++ b/src/modules/cli/pst/mod.rs @@ -254,7 +254,8 @@ fn build_eml_base64(message: Rc) -> Option { } let from = extract_string_property(properties, 0x5D01) - .or_else(|| extract_string_property(properties, 0x5D02)); + .or_else(|| extract_string_property(properties, 0x5D02)) + .or_else(|| extract_string_property(properties, 0x0C1F)); if let Some(f) = from { builder = builder.from(f);