Skip to content
This repository has been archived by the owner on Apr 23, 2023. It is now read-only.

Commit

Permalink
Administratrivia for v3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jorritfolmer committed Nov 28, 2020
1 parent 92229be commit 4870bbd
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 3.2.3

- Added support for Splunk 8.1. (Thanks to Aaron Myers for reporting the issue)
- Fixed Gmail POP3 issue

## 3.2.2

- Fixed exception when using add-on together with listenOnIPv6=yes
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,14 @@ You'll get this error message when Splunk kills the script after 30 seconds of w
1. the IMAP server is too slow or the batch-size is too high to return successfullly within 30 seconds
1. you're running on Splunk Cloud and haven't yet asked Support to enable outbound IMAPS connections over port 993/tcp

## Internal notes

```
$ cd /opt/splunk/etc/apps
$ tar -zcvf /tmp/TA-dmarc.tar.gz TA-dmarc --exclude .git --exclude .gitignore --exclude local --exclude local.meta --exclude \*.py[co]
$ splunk-appinspect inspect --mode precert /tmp/TA-dmarc.tar.gz
```

## Contributers

This add-on is maintained by Jorrit Folmer. These people and organisations have contributed pull requests, issues, ideas or otherwise spent time improving this add-on:
Expand Down
2 changes: 1 addition & 1 deletion app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"id": {
"group": null,
"name": "TA-dmarc",
"version": "3.2.2"
"version": "3.2.3"
},
"author": [
{
Expand Down
2 changes: 1 addition & 1 deletion default/app.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build = 1

[launcher]
author = Jorrit Folmer
version = 3.2.2
version = 3.2.3
description = TA-dmarc add-on for Splunk

[ui]
Expand Down
5 changes: 3 additions & 2 deletions default/inputs.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[default]
python.version = python3

[dmarc_directory]
python.version = python3
index = default
start_by_shell = false
sourcetype = dmarc
Expand All @@ -12,6 +11,7 @@ validate_xml = True
output_format = json

[dmarc_imap]
python.version = python3
index = default
start_by_shell = false
sourcetype = dmarc
Expand All @@ -24,6 +24,7 @@ output_format = json
batch_size = 100

[dmarc_pop3]
python.version = python3
index = default
start_by_shell = false
sourcetype = dmarc
Expand Down
5 changes: 5 additions & 0 deletions default/restmap.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,30 @@ members = TA_dmarc_settings, TA_dmarc_dmarc_pop3, TA_dmarc_account, TA_dmarc_dma

[admin_external:TA_dmarc_settings]
handlertype = python
python.version = python3
handlerfile = TA_dmarc_rh_settings.py
handleractions = edit, list

[admin_external:TA_dmarc_dmarc_pop3]
handlertype = python
python.version = python3
handlerfile = TA_dmarc_rh_dmarc_pop3.py
handleractions = edit, list, remove, create

[admin_external:TA_dmarc_account]
handlertype = python
python.version = python3
handlerfile = TA_dmarc_rh_account.py
handleractions = edit, list, remove, create

[admin_external:TA_dmarc_dmarc_imap]
handlertype = python
python.version = python3
handlerfile = TA_dmarc_rh_dmarc_imap.py
handleractions = edit, list, remove, create

[admin_external:TA_dmarc_dmarc_directory]
handlertype = python
python.version = python3
handlerfile = TA_dmarc_rh_dmarc_directory.py
handleractions = edit, list, remove, create

0 comments on commit 4870bbd

Please sign in to comment.