Skip to content

Commit 8b55ce6

Browse files
[Outlook] (spam reporting) Remove preview tag (#2311)
1 parent 9785a50 commit 8b55ce6

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/includes/runtimes-note.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
>
33
> - For the shared JavaScript runtime, this element enables the ribbon, task pane, and other supported components to use the same runtime. However, the SharedRuntime requirement set is only available in some Office applications. For more information, see [Shared runtime requirement sets](/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets).
44
> - For event-based activation, this element enables your add-in to run on composing a new item, for example. For supported clients and other information, see [Activate add-ins with events](/office/dev/add-ins/develop/event-based-activation).
5-
> - For integrated spam reporting (preview), this element enables your add-in to process unsolicited messages. To learn more about how to implement the integrated spam reporting feature in your add-in, see [Implement an integrated spam-reporting add-in (preview)](/office/dev/add-ins/outlook/spam-reporting).
5+
> - For integrated spam reporting, this element enables your add-in to process unsolicited messages. To learn more about how to implement the integrated spam reporting feature in your add-in, see [Implement an integrated spam-reporting add-in](/office/dev/add-ins/outlook/spam-reporting).
66
>
77
> Note that the event-based activation and integrated spam reporting features must use the same runtime. Multiple runtimes aren't currently supported in Outlook.

docs/manifest/override.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ The **\<Override\>** element for `RequirementToken` must contain the following c
200200
> [!IMPORTANT]
201201
> Support for this element was introduced with the [event-based activation feature](/office/dev/add-ins/develop/event-based-activation). See [the list of supported events](/office/dev/add-ins/develop/event-based-activation#supported-events) to learn when support was enabled for each event in each Office application.
202202
203-
An **\<Override\>** element expresses a conditional and can be read as an "If ... then ..." statement. If the **\<Override\>** element is of type **RuntimeOverride**, then the `type` attribute is the condition, and the `resid` attribute is the consequent. For example, the following is read "If the type is 'javascript', then the `resid` is 'JSRuntime.Url'." Excel, PowerPoint, and Word on Windows and classic Outlook on Windows require this element for [LaunchEvent extension point](/office/dev/add-ins/reference/manifest/extensionpoint#launchevent) and [ReportPhishingCommandSurface extension point (preview)](/javascript/api/manifest/extensionpoint) handlers.
203+
An **\<Override\>** element expresses a conditional and can be read as an "If ... then ..." statement. If the **\<Override\>** element is of type **RuntimeOverride**, then the `type` attribute is the condition, and the `resid` attribute is the consequent. For example, the following is read "If the type is 'javascript', then the `resid` is 'JSRuntime.Url'." Excel, PowerPoint, and Word on Windows and classic Outlook on Windows require this element for [LaunchEvent extension point](/office/dev/add-ins/reference/manifest/extensionpoint#launchevent) and [ReportPhishingCommandSurface extension point](/javascript/api/manifest/extensionpoint) handlers.
204204

205205
```xml
206206
<Runtime resid="WebViewRuntime.Url">

docs/manifest/runtime.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ For more information, see [Version overrides in the add-in only manifest](/offic
2222

2323
- [SharedRuntime 1.1](../requirement-sets/common/shared-runtime-requirement-sets.md) (Only when used in a task pane add-in.)
2424
- [Mailbox 1.10 and later](/javascript/api/requirement-sets/outlook/outlook-api-requirement-sets) (When used in an Outlook add-in that implements [event-based activation](/office/dev/add-ins/develop/event-based-activation).)
25-
- [Mailbox preview](/javascript/api/requirement-sets/outlook/preview-requirement-set/outlook-requirement-set-preview) (When used in an Outlook add-in that implements the [integrated spam reporting (preview)](/office/dev/add-ins/outlook/spam-reporting) feature.)
25+
- [Mailbox preview](/javascript/api/requirement-sets/outlook/preview-requirement-set/outlook-requirement-set-preview) (When used in an Outlook add-in that implements the [integrated spam reporting](/office/dev/add-ins/outlook/spam-reporting) feature.)
2626

2727
[!include[Runtimes support](../includes/runtimes-note.md)]
2828

@@ -42,7 +42,7 @@ For more information, see [Version overrides in the add-in only manifest](/offic
4242

4343
| Element | Required | Description |
4444
|:-----|:-----|:-----|
45-
| [Override](override.md) | No | Specifies the URL location of the JavaScript file that Office on Windows requires for [LaunchEvent extension point](extensionpoint.md#launchevent) and [ReportPhishingCommandSurface extension point (preview)](/javascript/api/manifest/extensionpoint) handlers. **Important**: At present, you can only define one **\<Override\>** element and it must be of type `javascript`.|
45+
| [Override](override.md) | No | Specifies the URL location of the JavaScript file that Office on Windows requires for [LaunchEvent extension point](extensionpoint.md#launchevent) and [ReportPhishingCommandSurface extension point](/javascript/api/manifest/extensionpoint) handlers. **Important**: At present, you can only define one **\<Override\>** element and it must be of type `javascript`.|
4646

4747
## Attributes
4848

@@ -67,4 +67,4 @@ Optional. Represents the length of time the add-in is allowed to run.
6767
- [Runtimes in Office Add-ins](/office/dev/add-ins/testing/runtimes)
6868
- [Configure your Office Add-in to use a shared JavaScript runtime](/office/dev/add-ins/develop/configure-your-add-in-to-use-a-shared-runtime)
6969
- [Activate add-ins with events](/office/dev/add-ins/develop/event-based-activation)
70-
- [Implement an integrated spam-reporting add-in (preview)](/office/dev/add-ins/outlook/spam-reporting)
70+
- [Implement an integrated spam-reporting add-in](/office/dev/add-ins/outlook/spam-reporting)

docs/manifest/runtimes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ For more information, see [Version overrides in the add-in only manifest](/offic
2525

2626
- [SharedRuntime 1.1](../requirement-sets/common/shared-runtime-requirement-sets.md) (Only when used in a task pane add-in.)
2727
- [Mailbox 1.10 and later](/javascript/api/requirement-sets/outlook/outlook-api-requirement-sets) (When used in an Outlook add-in that implements [event-based activation](/office/dev/add-ins/develop/event-based-activation).)
28-
- [Mailbox preview](/javascript/api/requirement-sets/outlook/preview-requirement-set/outlook-requirement-set-preview) (When used in an Outlook add-in that implements the [integrated spam reporting (preview)](/office/dev/add-ins/outlook/spam-reporting) feature.)
28+
- [Mailbox preview](/javascript/api/requirement-sets/outlook/preview-requirement-set/outlook-requirement-set-preview) (When used in an Outlook add-in that implements the [integrated spam reporting](/office/dev/add-ins/outlook/spam-reporting) feature.)
2929

3030
[!include[Runtimes support](../includes/runtimes-note.md)]
3131

@@ -53,4 +53,4 @@ For more information, see [Version overrides in the add-in only manifest](/offic
5353
- [Runtimes in Office Add-ins](/office/dev/add-ins/testing/runtimes)
5454
- [Configure your Office Add-in to use a shared JavaScript runtime](/office/dev/add-ins/develop/configure-your-add-in-to-use-a-shared-runtime)
5555
- [Activate add-ins with events](/office/dev/add-ins/develop/event-based-activation)
56-
- [Implement an integrated spam-reporting add-in (preview)](/office/dev/add-ins/outlook/spam-reporting)
56+
- [Implement an integrated spam-reporting add-in](/office/dev/add-ins/outlook/spam-reporting)

0 commit comments

Comments
 (0)