-
Notifications
You must be signed in to change notification settings - Fork 131
Update concept-email.md for .eml file handling #1561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Added note about .eml file support and required flag.
|
@PramodKumarHK89 : Thanks for your contribution! The author(s) and reviewer(s) have been notified to review your proposed change. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the documentation for email file handling in the MIP SDK to clarify the requirements for working with .eml files. The changes emphasize that a different configuration flag must be used when handling .eml files compared to .msg files.
Key Changes:
- Expanded the existing note about .eml file support to specify the required
enable_eml_file_typeflag - Added a code comment example demonstrating how to set the
enable_eml_file_typeflag
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
mip/develop/concept-email.md
Outdated
|
|
||
| > [!NOTE] | ||
| > As of MIP SDK 1.17, .eml files are supported. Handling is similar to .msg for labeling/protection scenarios and to .rpmsg for inspection scenarios, depending on the container format. | ||
| > As of MIP SDK 1.17, .eml files are supported. Handling is similar to .msg for labeling/protection scenarios and to .rpmsg for inspection scenarios, depending on the container format. When working with .eml files, you must set the *enable_eml_file_type* flag instead of *enable_msg_file_type*. For details on how to set this flag, please refer to the [Labeling of MSG Files](#labeling-of-msg-files) section. |
Copilot
AI
Oct 17, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The reference to 'Labeling of MSG Files' section may be confusing since the section primarily demonstrates MSG file handling. Consider either updating the section title to be more inclusive (e.g., 'Labeling of MSG and EML Files') or creating a dedicated section for EML file configuration to improve clarity.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made changes as per the recommendations
|
Can you review the proposed changes? Important: When the changes are ready for publication, adding a #label:"aq-pr-triaged" |
Added support details for .eml files in MIP SDK 1.17.
|
@msmbaldwin Could you review this proposed update to your article and enter |
Added note about .eml file support and required flag.