├── LICENSE ├── README.md ├── default ├── app.conf ├── eventtypes.conf ├── props.conf ├── tags.conf └── transforms.conf ├── lookups ├── postfix_actions.csv └── postfix_consts.csv ├── metadata └── default.meta ├── requirements.txt └── static ├── appLogo.png └── appLogo_2x.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kintyre/TA-postfix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kintyre/TA-postfix/HEAD/README.md -------------------------------------------------------------------------------- /default/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kintyre/TA-postfix/HEAD/default/app.conf -------------------------------------------------------------------------------- /default/eventtypes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kintyre/TA-postfix/HEAD/default/eventtypes.conf -------------------------------------------------------------------------------- /default/props.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kintyre/TA-postfix/HEAD/default/props.conf -------------------------------------------------------------------------------- /default/tags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kintyre/TA-postfix/HEAD/default/tags.conf -------------------------------------------------------------------------------- /default/transforms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kintyre/TA-postfix/HEAD/default/transforms.conf -------------------------------------------------------------------------------- /lookups/postfix_actions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kintyre/TA-postfix/HEAD/lookups/postfix_actions.csv -------------------------------------------------------------------------------- /lookups/postfix_consts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kintyre/TA-postfix/HEAD/lookups/postfix_consts.csv -------------------------------------------------------------------------------- /metadata/default.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kintyre/TA-postfix/HEAD/metadata/default.meta -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | kintyre-splunk-conf 2 | bump2version 3 | pre-commit 4 | -------------------------------------------------------------------------------- /static/appLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kintyre/TA-postfix/HEAD/static/appLogo.png -------------------------------------------------------------------------------- /static/appLogo_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kintyre/TA-postfix/HEAD/static/appLogo_2x.png --------------------------------------------------------------------------------