├── .gitignore ├── INSTALL ├── LICENSE ├── Makefile ├── README.md ├── UPGRADING ├── examples ├── common_domains ├── example_domains └── pf.conf ├── experimental ├── spf_mta_capture └── spf_mta_capture.1 ├── filters └── filter_sipcalc ├── spf_fetch ├── spf_fetch.1 ├── spf_update_pf └── spf_update_pf.1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/UPGRADING -------------------------------------------------------------------------------- /examples/common_domains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/examples/common_domains -------------------------------------------------------------------------------- /examples/example_domains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/examples/example_domains -------------------------------------------------------------------------------- /examples/pf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/examples/pf.conf -------------------------------------------------------------------------------- /experimental/spf_mta_capture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/experimental/spf_mta_capture -------------------------------------------------------------------------------- /experimental/spf_mta_capture.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/experimental/spf_mta_capture.1 -------------------------------------------------------------------------------- /filters/filter_sipcalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/filters/filter_sipcalc -------------------------------------------------------------------------------- /spf_fetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/spf_fetch -------------------------------------------------------------------------------- /spf_fetch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/spf_fetch.1 -------------------------------------------------------------------------------- /spf_update_pf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/spf_update_pf -------------------------------------------------------------------------------- /spf_update_pf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akpoff/spf_fetch/HEAD/spf_update_pf.1 --------------------------------------------------------------------------------