Explicitly mention it is id of email and not email id for --email (#3329)
It was easier to confuse `email ID` with `email id` and think it is the email address. This commit makes it clear that it is the id of the email message. --- #### Does this PR need a docs update or release note? - [ ] ✅ Yes, it's included - [ ] 🕐 Yes, but in a later PR - [x] ⛔ No #### Type of change <!--- Please check the type of change your PR introduces: ---> - [ ] 🌻 Feature - [ ] 🐛 Bugfix - [x] 🗺️ Documentation - [ ] 🤖 Supportability/Tests - [ ] 💻 CI/Deployment - [ ] 🧹 Tech Debt/Cleanup #### Issue(s) <!-- Can reference multiple issues. Use one of the following "magic words" - "closes, fixes" to auto-close the Github issue. --> * #<issue> #### Test Plan <!-- How will this be tested prior to merging.--> - [x] 💪 Manual - [ ] ⚡ Unit test - [ ] 💚 E2E
This commit is contained in:
parent
7b83626adb
commit
eab5510c03
@ -113,7 +113,7 @@ func AddExchangeDetailsAndRestoreFlags(cmd *cobra.Command) {
|
|||||||
fs.StringSliceVar(
|
fs.StringSliceVar(
|
||||||
&EmailFV,
|
&EmailFV,
|
||||||
EmailFN, nil,
|
EmailFN, nil,
|
||||||
"Select emails by email ID; accepts '"+Wildcard+"' to select all emails.")
|
"Select email messages by ID; accepts '"+Wildcard+"' to select all emails.")
|
||||||
fs.StringSliceVar(
|
fs.StringSliceVar(
|
||||||
&EmailFolderFV,
|
&EmailFolderFV,
|
||||||
EmailFolderFN, nil,
|
EmailFolderFN, nil,
|
||||||
|
|||||||
@ -250,7 +250,7 @@ To restore the selected email, use the following command.
|
|||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
# Restore a selected email
|
# Restore a selected email
|
||||||
.\corso restore exchange --backup <id of your selected backup> --email <email ID>
|
.\corso restore exchange --backup <id of your selected backup> --email <email message ID>
|
||||||
```
|
```
|
||||||
|
|
||||||
</TabItem>
|
</TabItem>
|
||||||
@ -258,7 +258,7 @@ To restore the selected email, use the following command.
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Restore a selected email
|
# Restore a selected email
|
||||||
./corso restore exchange --backup <id of your selected backup> --email <email ID>
|
./corso restore exchange --backup <id of your selected backup> --email <email message ID>
|
||||||
```
|
```
|
||||||
|
|
||||||
</TabItem>
|
</TabItem>
|
||||||
@ -268,7 +268,7 @@ To restore the selected email, use the following command.
|
|||||||
`# Restore a selected email
|
`# Restore a selected email
|
||||||
docker run --env-file $HOME/.corso/corso.env \\
|
docker run --env-file $HOME/.corso/corso.env \\
|
||||||
--volume $HOME/.corso:/app/corso ghcr.io/alcionai/corso:${Version()} \\
|
--volume $HOME/.corso:/app/corso ghcr.io/alcionai/corso:${Version()} \\
|
||||||
restore exchange --backup <id of your selected backup> --email <email ID>`
|
restore exchange --backup <id of your selected backup> --email <email message ID>`
|
||||||
}</CodeBlock>
|
}</CodeBlock>
|
||||||
|
|
||||||
</TabItem>
|
</TabItem>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user