Skip to content

Commit cea9c92

Browse files
Merge pull request #81 from splunk-soar-connectors/grokas/PAPP-37647-phishing_asset_configuration_fields
2 parents 32e4210 + 44b45e9 commit cea9c92

File tree

4 files changed

+12
-18
lines changed

4 files changed

+12
-18
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# MS Graph for Office 365
22

33
Publisher: Splunk <br>
4-
Connector Version: 4.2.1 <br>
4+
Connector Version: 4.1.0 <br>
55
Product Vendor: Microsoft <br>
66
Product Name: Office 365 (MS Graph) <br>
77
Minimum Product Version: 7.0.0
@@ -591,8 +591,8 @@ VARIABLE | REQUIRED | TYPE | DESCRIPTION
591591
**email_address** | optional | string | Email Address of the User (On Poll) |
592592
**folder** | optional | string | Mailbox folder name/folder path or the internal office365 folder ID to ingest (On Poll) |
593593
**get_folder_id** | optional | boolean | Retrieve the folder ID for the provided folder name/folder path automatically |
594-
**first_run_max_emails** | optional | numeric | Maximum Containers for scheduled polling first time |
595-
**max_containers** | optional | numeric | Maximum Containers for scheduled polling |
594+
**first_run_max_emails** | optional | numeric | Maximum emails for scheduled polling first time |
595+
**max_containers** | optional | numeric | Maximum emails for scheduled polling |
596596
**extract_attachments** | optional | boolean | Extract Attachments |
597597
**extract_urls** | optional | boolean | Extract URLs |
598598
**extract_ips** | optional | boolean | Extract IPs |

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "msgraphoffice365"
3-
version = "4.2.1"
3+
version = "4.1.0"
44
description = "This app enables MS Graph API-based email ingestion and investigative actions on Office 365"
55
license = "Copyright (c) 2017-2025 Splunk Inc."
66
requires-python = ">=3.13, <3.15"
@@ -9,7 +9,7 @@ dependencies = [
99
"beautifulsoup4>=4.14.2",
1010
"msal>=1.31.0",
1111
"requests>=2.32.0",
12-
"splunk-soar-sdk>=3.15.0",
12+
"splunk-soar-sdk>=3.15.1",
1313
]
1414

1515
# [tool.uv.sources]

src/app.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -194,30 +194,25 @@ class Asset(BaseAsset):
194194
email_address: str = AssetField(
195195
required=False,
196196
description="Email Address of the User (On Poll)",
197-
category=FieldCategory.INGEST,
198197
)
199198
folder: str = AssetField(
200199
required=False,
201200
description="Mailbox folder name/folder path or the internal office365 folder ID to ingest (On Poll)",
202-
category=FieldCategory.INGEST,
203201
)
204202
get_folder_id: bool = AssetField(
205203
required=False,
206204
description="Retrieve the folder ID for the provided folder name/folder path automatically",
207205
default=True,
208-
category=FieldCategory.INGEST,
209206
)
210207
first_run_max_emails: int = AssetField(
211208
required=False,
212-
description="Maximum Containers for scheduled polling first time",
209+
description="Maximum emails for scheduled polling first time",
213210
default=1000,
214-
category=FieldCategory.INGEST,
215211
)
216212
max_containers: int = AssetField(
217213
required=False,
218-
description="Maximum Containers for scheduled polling",
214+
description="Maximum emails for scheduled polling",
219215
default=100,
220-
category=FieldCategory.INGEST,
221216
)
222217
extract_attachments: bool = AssetField(
223218
required=False,
@@ -260,7 +255,6 @@ class Asset(BaseAsset):
260255
description="How to Ingest",
261256
default="oldest first",
262257
value_list=["oldest first", "latest first"],
263-
category=FieldCategory.INGEST,
264258
)
265259
extract_eml: bool = AssetField(
266260
required=False,

uv.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)