├── .gitignore ├── .travis.yml ├── Changes ├── LICENSE ├── Makefile.PL ├── README.md ├── bin ├── authentication_milter ├── authentication_milter_blocker ├── authentication_milter_client └── authentication_milter_log ├── dist.ini ├── lib └── Mail │ └── Milter │ ├── Authentication.pm │ └── Authentication │ ├── App │ ├── Blocker │ │ ├── App.pm │ │ └── App │ │ │ └── Command │ │ │ ├── add.pm │ │ │ ├── delete.pm │ │ │ └── list.pm │ └── ProcessLog │ │ ├── App.pm │ │ └── App │ │ └── Command │ │ └── arex.pm │ ├── Client.pm │ ├── Config.pm │ ├── Constants.pm │ ├── Exception.pm │ ├── HTDocs.pm │ ├── Handler.pm │ ├── Handler │ ├── ARC.pm │ ├── ARC_metrics.json │ ├── AbusixDataFeed.pm │ ├── AddID.pm │ ├── AlignedFrom.pm │ ├── AlignedFrom_metrics.json │ ├── Auth.pm │ ├── Auth_metrics.json │ ├── BIMI.pm │ ├── Blocker.pm │ ├── DKIM.pm │ ├── DKIM_metrics.json │ ├── DMARC.pm │ ├── DMARC_metrics.json │ ├── IPRev.pm │ ├── IPRev_metrics.json │ ├── LocalIP.pm │ ├── LocalIP_metrics.json │ ├── Logger.pm │ ├── PTR.pm │ ├── PTR_metrics.json │ ├── RBLDNS.pm │ ├── ReturnOK.pm │ ├── ReturnOK_metrics.json │ ├── SPF.pm │ ├── SPF_metrics.json │ ├── Sanitize.pm │ ├── Sanitize_metrics.json │ ├── SenderID.pm │ ├── SenderID_metrics.json │ ├── Size.pm │ ├── Size_metrics.json │ ├── TLS.pm │ ├── TLS_metrics.json │ ├── TestTimeout.pm │ ├── TrustedIP.pm │ ├── TrustedIP_metrics.json │ ├── XGoogleDKIM.pm │ └── XGoogleDKIM_metrics.json │ ├── Metric.pm │ ├── Metric │ ├── Base.json │ ├── Grafana.pm │ ├── RowErrors.json │ ├── RowProcesses.json │ ├── RowProcessingTime.json │ ├── RowThroughput.json │ └── RowUptime.json │ ├── Net │ ├── Milter.pm │ └── ServerPatches.pm │ ├── Pragmas.pm │ ├── Protocol │ ├── Milter.pm │ └── SMTP.pm │ ├── Resolver.pm │ ├── Tester.pm │ ├── Tester │ └── HandlerTester.pm │ └── htdocs │ └── css │ ├── authmilter.css │ ├── normalize.css │ └── skeleton.css ├── share ├── authentication_milter.init ├── authentication_milter.json └── mail-dmarc.ini ├── t ├── 00-load.t ├── 01-func-pipeline.t ├── 01-func-tools.t ├── 02-unit-mail-milter-authentication-handler-rbl.t ├── 02-unit-mail-milter-authentication-handler.t ├── 03-func-milter.t ├── 03-func-smtp.t ├── 04-unit-handler-abusixdatafeed.t ├── 04-unit-handler-aligned-from_dmarc.t ├── 04-unit-handler-aligned-from_nodmarc.t ├── 04-unit-handler-auth.t ├── 04-unit-handler-bimi.t ├── 04-unit-handler-blocker.t ├── 04-unit-handler-dkim.t ├── 04-unit-handler-dmarc-strict-from.t ├── 04-unit-handler-dmarc.t ├── 04-unit-handler-localip.t ├── 04-unit-handler-remap.t ├── 04-unit-handler-spfu.t ├── 04-unit-handler-trustedip.t ├── AuthMilterTest.pm ├── TestAlignedFromHandler.pm ├── bimi.zonefile ├── conf │ ├── blocker.toml │ ├── blocker2.toml │ └── blocker3.toml ├── config │ ├── dmarc_reject.smtp │ │ ├── authentication_milter.json │ │ └── mail-dmarc.ini │ ├── dmarc_reject │ │ ├── authentication_milter.json │ │ └── mail-dmarc.ini │ ├── dmarc_reject_wl.smtp │ │ ├── authentication_milter.json │ │ └── mail-dmarc.ini │ ├── dmarc_reject_wl │ │ ├── authentication_milter.json │ │ └── mail-dmarc.ini │ ├── dryrun.smtp │ │ ├── authentication_milter.json │ │ └── mail-dmarc.ini │ ├── dryrun │ │ ├── authentication_milter.json │ │ └── mail-dmarc.ini │ ├── handler │ │ └── etc │ │ │ └── mail-dmarc.ini │ ├── hide_none.smtp │ │ ├── authentication_milter.json │ │ └── mail-dmarc.ini │ ├── hide_none │ │ ├── authentication_milter.json │ │ └── mail-dmarc.ini │ ├── normal.smtp │ │ ├── authentication_milter.json │ │ └── mail-dmarc.ini │ ├── normal │ │ ├── authentication_milter.json │ │ └── mail-dmarc.ini │ └── timeout │ │ ├── authentication_milter.json │ │ └── mail-dmarc.ini ├── data │ ├── FM_BIMI.svg │ ├── example │ │ ├── dmarc_multi.eml │ │ ├── dmarc_multi_2.eml │ │ ├── dmarc_reject.eml │ │ ├── dmarc_reject.smtp.eml │ │ ├── dmarc_reject_case.eml │ │ ├── dmarc_reject_case.smtp.eml │ │ ├── dmarc_reject_hard.eml │ │ ├── dmarc_reject_hard_whitelisted.eml │ │ ├── dmarc_reject_hard_whitelisted.smtp.eml │ │ ├── dmarc_reject_wl.eml │ │ ├── dmarc_reject_wl.smtp.eml │ │ ├── google_apps_bad.eml │ │ ├── google_apps_bad.smtp.eml │ │ ├── google_apps_bad_space.eml │ │ ├── google_apps_bad_space.smtp.eml │ │ ├── google_apps_bad_spf_fail.eml │ │ ├── google_apps_bad_spf_fail.smtp.eml │ │ ├── google_apps_bad_spf_fail_hard.eml │ │ ├── google_apps_bad_spf_fail_hard.smtp.eml │ │ ├── google_apps_good.8bit.smtp.eml │ │ ├── google_apps_good.eml │ │ ├── google_apps_good.local.eml │ │ ├── google_apps_good.local.smtp.eml │ │ ├── google_apps_good.smtp.eml │ │ ├── google_apps_good.timeout.eml │ │ ├── google_apps_good.trusted.eml │ │ ├── google_apps_good.trusted.smtp.eml │ │ ├── google_apps_good_case.local.eml │ │ ├── google_apps_good_case.local.smtp.eml │ │ ├── google_apps_good_cn.eml │ │ ├── google_apps_good_cn.smtp.eml │ │ ├── google_apps_good_dryrun.eml │ │ ├── google_apps_good_dryrun.smtp.eml │ │ ├── google_apps_good_hide_none.eml │ │ ├── google_apps_good_hide_none.smtp.eml │ │ ├── google_apps_good_map.eml │ │ ├── google_apps_good_map.smtp.eml │ │ ├── google_apps_good_map_cidr.eml │ │ ├── google_apps_good_map_cidr.smtp.eml │ │ ├── google_apps_good_nofrom.eml │ │ ├── google_apps_good_nofrom.smtp.eml │ │ ├── google_apps_good_sanitize.eml │ │ ├── google_apps_good_sanitize.smtp.eml │ │ ├── google_apps_good_sanitize_authserv_id.eml │ │ ├── google_apps_good_sanitize_authserv_id.smtp.eml │ │ ├── google_apps_good_spf_fail.eml │ │ ├── google_apps_good_spf_fail.smtp.eml │ │ ├── google_apps_headers.smtp.eml │ │ ├── google_apps_nodkim.eml │ │ ├── google_apps_nodkim.smtp.eml │ │ ├── google_apps_nodkim_hide_none.eml │ │ ├── google_apps_nodkim_hide_none.smtp.eml │ │ ├── google_apps_nodkim_spf_fail.eml │ │ ├── google_apps_nodkim_spf_fail.smtp.eml │ │ ├── google_apps_nospf_hide_none.eml │ │ ├── google_apps_nospf_hide_none.smtp.eml │ │ ├── google_apps_noxgdkim_hide_none.eml │ │ ├── google_apps_noxgdkim_hide_none.smtp.eml │ │ ├── list.smtp.eml │ │ ├── longlines.eml │ │ ├── longlines.smtp.eml │ │ ├── pipelined.limit.smtp.eml │ │ ├── pipelined.smtp.eml │ │ ├── spam_headers.smtp.eml │ │ ├── spam_headers_hide_none.eml │ │ ├── spam_headers_hide_none.smtp.eml │ │ ├── spam_headers_spf_hide_none.eml │ │ ├── spam_headers_spf_hide_none.smtp.eml │ │ ├── tools_pipeline_test.eml │ │ ├── tools_test.eml │ │ └── transparency.smtp.eml │ ├── metrics │ │ ├── milter_1.json │ │ ├── milter_2.json │ │ ├── milter_3.json │ │ ├── milter_4.json │ │ ├── milter_5.json │ │ ├── milter_timeout.json │ │ ├── smtp_1.json │ │ ├── smtp_2.json │ │ ├── smtp_3.json │ │ ├── smtp_4.json │ │ └── smtp_5.json │ └── source │ │ ├── dmarc_multi.eml │ │ ├── dmarc_reject.eml │ │ ├── dmarc_reject_case.eml │ │ ├── dmarc_reject_wl.eml │ │ ├── google_apps_bad.eml │ │ ├── google_apps_bad_space.eml │ │ ├── google_apps_good.eml │ │ ├── google_apps_good_case.eml │ │ ├── google_apps_good_sanitize.eml │ │ ├── google_apps_headers.eml │ │ ├── google_apps_nodkim.eml │ │ ├── google_apps_noxgdkim.eml │ │ ├── list.eml │ │ ├── longlines.eml │ │ ├── spam_headers.eml │ │ ├── tools_test.eml │ │ └── transparency.eml ├── dev-boilerplate.t ├── dev-critic.t ├── dev-manifest.t ├── dev-pod.t ├── get_record.pl ├── perlcriticrc └── zonefile └── weaver.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/Changes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/README.md -------------------------------------------------------------------------------- /bin/authentication_milter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/bin/authentication_milter -------------------------------------------------------------------------------- /bin/authentication_milter_blocker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/bin/authentication_milter_blocker -------------------------------------------------------------------------------- /bin/authentication_milter_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/bin/authentication_milter_client -------------------------------------------------------------------------------- /bin/authentication_milter_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/bin/authentication_milter_log -------------------------------------------------------------------------------- /dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/dist.ini -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/App/Blocker/App.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/App/Blocker/App.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/App/Blocker/App/Command/add.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/App/Blocker/App/Command/add.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/App/Blocker/App/Command/delete.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/App/Blocker/App/Command/delete.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/App/Blocker/App/Command/list.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/App/Blocker/App/Command/list.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/App/ProcessLog/App.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/App/ProcessLog/App.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/App/ProcessLog/App/Command/arex.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/App/ProcessLog/App/Command/arex.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Client.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Client.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Config.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Constants.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Constants.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Exception.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Exception.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/HTDocs.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/HTDocs.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/ARC.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/ARC.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/ARC_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/ARC_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/AbusixDataFeed.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/AbusixDataFeed.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/AddID.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/AddID.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/AlignedFrom.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/AlignedFrom.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/AlignedFrom_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/AlignedFrom_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/Auth.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/Auth.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/Auth_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/Auth_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/BIMI.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/BIMI.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/Blocker.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/Blocker.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/DKIM.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/DKIM.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/DKIM_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/DKIM_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/DMARC.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/DMARC.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/DMARC_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/DMARC_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/IPRev.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/IPRev.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/IPRev_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/IPRev_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/LocalIP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/LocalIP.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/LocalIP_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/LocalIP_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/Logger.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/Logger.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/PTR.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/PTR.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/PTR_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/PTR_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/RBLDNS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/RBLDNS.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/ReturnOK.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/ReturnOK.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/ReturnOK_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/ReturnOK_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/SPF.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/SPF.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/SPF_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/SPF_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/Sanitize.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/Sanitize.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/Sanitize_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/Sanitize_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/SenderID.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/SenderID.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/SenderID_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/SenderID_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/Size.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/Size.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/Size_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/Size_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/TLS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/TLS.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/TLS_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/TLS_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/TestTimeout.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/TestTimeout.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/TrustedIP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/TrustedIP.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/TrustedIP_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/TrustedIP_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/XGoogleDKIM.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/XGoogleDKIM.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Handler/XGoogleDKIM_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Handler/XGoogleDKIM_metrics.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Metric.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Metric.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Metric/Base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Metric/Base.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Metric/Grafana.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Metric/Grafana.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Metric/RowErrors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Metric/RowErrors.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Metric/RowProcesses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Metric/RowProcesses.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Metric/RowProcessingTime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Metric/RowProcessingTime.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Metric/RowThroughput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Metric/RowThroughput.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Metric/RowUptime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Metric/RowUptime.json -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Net/Milter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Net/Milter.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Net/ServerPatches.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Net/ServerPatches.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Pragmas.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Pragmas.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Protocol/Milter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Protocol/Milter.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Protocol/SMTP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Protocol/SMTP.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Resolver.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Resolver.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Tester.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Tester.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/Tester/HandlerTester.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/Tester/HandlerTester.pm -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/htdocs/css/authmilter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/htdocs/css/authmilter.css -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/htdocs/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/htdocs/css/normalize.css -------------------------------------------------------------------------------- /lib/Mail/Milter/Authentication/htdocs/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/lib/Mail/Milter/Authentication/htdocs/css/skeleton.css -------------------------------------------------------------------------------- /share/authentication_milter.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/share/authentication_milter.init -------------------------------------------------------------------------------- /share/authentication_milter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/share/authentication_milter.json -------------------------------------------------------------------------------- /share/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/share/mail-dmarc.ini -------------------------------------------------------------------------------- /t/00-load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/00-load.t -------------------------------------------------------------------------------- /t/01-func-pipeline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/01-func-pipeline.t -------------------------------------------------------------------------------- /t/01-func-tools.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/01-func-tools.t -------------------------------------------------------------------------------- /t/02-unit-mail-milter-authentication-handler-rbl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/02-unit-mail-milter-authentication-handler-rbl.t -------------------------------------------------------------------------------- /t/02-unit-mail-milter-authentication-handler.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/02-unit-mail-milter-authentication-handler.t -------------------------------------------------------------------------------- /t/03-func-milter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/03-func-milter.t -------------------------------------------------------------------------------- /t/03-func-smtp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/03-func-smtp.t -------------------------------------------------------------------------------- /t/04-unit-handler-abusixdatafeed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-abusixdatafeed.t -------------------------------------------------------------------------------- /t/04-unit-handler-aligned-from_dmarc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-aligned-from_dmarc.t -------------------------------------------------------------------------------- /t/04-unit-handler-aligned-from_nodmarc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-aligned-from_nodmarc.t -------------------------------------------------------------------------------- /t/04-unit-handler-auth.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-auth.t -------------------------------------------------------------------------------- /t/04-unit-handler-bimi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-bimi.t -------------------------------------------------------------------------------- /t/04-unit-handler-blocker.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-blocker.t -------------------------------------------------------------------------------- /t/04-unit-handler-dkim.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-dkim.t -------------------------------------------------------------------------------- /t/04-unit-handler-dmarc-strict-from.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-dmarc-strict-from.t -------------------------------------------------------------------------------- /t/04-unit-handler-dmarc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-dmarc.t -------------------------------------------------------------------------------- /t/04-unit-handler-localip.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-localip.t -------------------------------------------------------------------------------- /t/04-unit-handler-remap.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-remap.t -------------------------------------------------------------------------------- /t/04-unit-handler-spfu.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-spfu.t -------------------------------------------------------------------------------- /t/04-unit-handler-trustedip.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/04-unit-handler-trustedip.t -------------------------------------------------------------------------------- /t/AuthMilterTest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/AuthMilterTest.pm -------------------------------------------------------------------------------- /t/TestAlignedFromHandler.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/TestAlignedFromHandler.pm -------------------------------------------------------------------------------- /t/bimi.zonefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/bimi.zonefile -------------------------------------------------------------------------------- /t/conf/blocker.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/conf/blocker.toml -------------------------------------------------------------------------------- /t/conf/blocker2.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/conf/blocker2.toml -------------------------------------------------------------------------------- /t/conf/blocker3.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/conf/blocker3.toml -------------------------------------------------------------------------------- /t/config/dmarc_reject.smtp/authentication_milter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/dmarc_reject.smtp/authentication_milter.json -------------------------------------------------------------------------------- /t/config/dmarc_reject.smtp/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/dmarc_reject.smtp/mail-dmarc.ini -------------------------------------------------------------------------------- /t/config/dmarc_reject/authentication_milter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/dmarc_reject/authentication_milter.json -------------------------------------------------------------------------------- /t/config/dmarc_reject/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/dmarc_reject/mail-dmarc.ini -------------------------------------------------------------------------------- /t/config/dmarc_reject_wl.smtp/authentication_milter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/dmarc_reject_wl.smtp/authentication_milter.json -------------------------------------------------------------------------------- /t/config/dmarc_reject_wl.smtp/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/dmarc_reject_wl.smtp/mail-dmarc.ini -------------------------------------------------------------------------------- /t/config/dmarc_reject_wl/authentication_milter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/dmarc_reject_wl/authentication_milter.json -------------------------------------------------------------------------------- /t/config/dmarc_reject_wl/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/dmarc_reject_wl/mail-dmarc.ini -------------------------------------------------------------------------------- /t/config/dryrun.smtp/authentication_milter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/dryrun.smtp/authentication_milter.json -------------------------------------------------------------------------------- /t/config/dryrun.smtp/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/dryrun.smtp/mail-dmarc.ini -------------------------------------------------------------------------------- /t/config/dryrun/authentication_milter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/dryrun/authentication_milter.json -------------------------------------------------------------------------------- /t/config/dryrun/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/dryrun/mail-dmarc.ini -------------------------------------------------------------------------------- /t/config/handler/etc/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/handler/etc/mail-dmarc.ini -------------------------------------------------------------------------------- /t/config/hide_none.smtp/authentication_milter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/hide_none.smtp/authentication_milter.json -------------------------------------------------------------------------------- /t/config/hide_none.smtp/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/hide_none.smtp/mail-dmarc.ini -------------------------------------------------------------------------------- /t/config/hide_none/authentication_milter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/hide_none/authentication_milter.json -------------------------------------------------------------------------------- /t/config/hide_none/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/hide_none/mail-dmarc.ini -------------------------------------------------------------------------------- /t/config/normal.smtp/authentication_milter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/normal.smtp/authentication_milter.json -------------------------------------------------------------------------------- /t/config/normal.smtp/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/normal.smtp/mail-dmarc.ini -------------------------------------------------------------------------------- /t/config/normal/authentication_milter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/normal/authentication_milter.json -------------------------------------------------------------------------------- /t/config/normal/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/normal/mail-dmarc.ini -------------------------------------------------------------------------------- /t/config/timeout/authentication_milter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/timeout/authentication_milter.json -------------------------------------------------------------------------------- /t/config/timeout/mail-dmarc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/config/timeout/mail-dmarc.ini -------------------------------------------------------------------------------- /t/data/FM_BIMI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/FM_BIMI.svg -------------------------------------------------------------------------------- /t/data/example/dmarc_multi.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/dmarc_multi.eml -------------------------------------------------------------------------------- /t/data/example/dmarc_multi_2.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/dmarc_multi_2.eml -------------------------------------------------------------------------------- /t/data/example/dmarc_reject.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/dmarc_reject.eml -------------------------------------------------------------------------------- /t/data/example/dmarc_reject.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/dmarc_reject.smtp.eml -------------------------------------------------------------------------------- /t/data/example/dmarc_reject_case.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/dmarc_reject_case.eml -------------------------------------------------------------------------------- /t/data/example/dmarc_reject_case.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/dmarc_reject_case.smtp.eml -------------------------------------------------------------------------------- /t/data/example/dmarc_reject_hard.eml: -------------------------------------------------------------------------------- 1 | Message rejected with code : 550 5.7.0 DMARC policy violation -------------------------------------------------------------------------------- /t/data/example/dmarc_reject_hard_whitelisted.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/dmarc_reject_hard_whitelisted.eml -------------------------------------------------------------------------------- /t/data/example/dmarc_reject_hard_whitelisted.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/dmarc_reject_hard_whitelisted.smtp.eml -------------------------------------------------------------------------------- /t/data/example/dmarc_reject_wl.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/dmarc_reject_wl.eml -------------------------------------------------------------------------------- /t/data/example/dmarc_reject_wl.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/dmarc_reject_wl.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_bad.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_bad.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_bad.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_bad.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_bad_space.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_bad_space.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_bad_space.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_bad_space.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_bad_spf_fail.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_bad_spf_fail.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_bad_spf_fail.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_bad_spf_fail.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_bad_spf_fail_hard.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_bad_spf_fail_hard.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_bad_spf_fail_hard.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_bad_spf_fail_hard.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good.8bit.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good.8bit.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good.local.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good.local.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good.local.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good.local.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good.timeout.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good.timeout.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good.trusted.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good.trusted.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good.trusted.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good.trusted.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_case.local.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_case.local.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_case.local.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_case.local.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_cn.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_cn.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_cn.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_cn.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_dryrun.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_dryrun.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_dryrun.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_dryrun.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_hide_none.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_hide_none.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_hide_none.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_hide_none.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_map.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_map.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_map.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_map.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_map_cidr.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_map_cidr.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_map_cidr.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_map_cidr.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_nofrom.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_nofrom.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_nofrom.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_nofrom.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_sanitize.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_sanitize.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_sanitize.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_sanitize.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_sanitize_authserv_id.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_sanitize_authserv_id.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_sanitize_authserv_id.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_sanitize_authserv_id.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_spf_fail.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_spf_fail.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_good_spf_fail.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_good_spf_fail.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_headers.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_headers.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_nodkim.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_nodkim.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_nodkim.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_nodkim.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_nodkim_hide_none.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_nodkim_hide_none.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_nodkim_hide_none.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_nodkim_hide_none.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_nodkim_spf_fail.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_nodkim_spf_fail.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_nodkim_spf_fail.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_nodkim_spf_fail.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_nospf_hide_none.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_nospf_hide_none.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_nospf_hide_none.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_nospf_hide_none.smtp.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_noxgdkim_hide_none.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_noxgdkim_hide_none.eml -------------------------------------------------------------------------------- /t/data/example/google_apps_noxgdkim_hide_none.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/google_apps_noxgdkim_hide_none.smtp.eml -------------------------------------------------------------------------------- /t/data/example/list.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/list.smtp.eml -------------------------------------------------------------------------------- /t/data/example/longlines.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/longlines.eml -------------------------------------------------------------------------------- /t/data/example/longlines.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/longlines.smtp.eml -------------------------------------------------------------------------------- /t/data/example/pipelined.limit.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/pipelined.limit.smtp.eml -------------------------------------------------------------------------------- /t/data/example/pipelined.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/pipelined.smtp.eml -------------------------------------------------------------------------------- /t/data/example/spam_headers.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/spam_headers.smtp.eml -------------------------------------------------------------------------------- /t/data/example/spam_headers_hide_none.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/spam_headers_hide_none.eml -------------------------------------------------------------------------------- /t/data/example/spam_headers_hide_none.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/spam_headers_hide_none.smtp.eml -------------------------------------------------------------------------------- /t/data/example/spam_headers_spf_hide_none.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/spam_headers_spf_hide_none.eml -------------------------------------------------------------------------------- /t/data/example/spam_headers_spf_hide_none.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/spam_headers_spf_hide_none.smtp.eml -------------------------------------------------------------------------------- /t/data/example/tools_pipeline_test.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/tools_pipeline_test.eml -------------------------------------------------------------------------------- /t/data/example/tools_test.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/tools_test.eml -------------------------------------------------------------------------------- /t/data/example/transparency.smtp.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/example/transparency.smtp.eml -------------------------------------------------------------------------------- /t/data/metrics/milter_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/metrics/milter_1.json -------------------------------------------------------------------------------- /t/data/metrics/milter_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/metrics/milter_2.json -------------------------------------------------------------------------------- /t/data/metrics/milter_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/metrics/milter_3.json -------------------------------------------------------------------------------- /t/data/metrics/milter_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/metrics/milter_4.json -------------------------------------------------------------------------------- /t/data/metrics/milter_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/metrics/milter_5.json -------------------------------------------------------------------------------- /t/data/metrics/milter_timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/metrics/milter_timeout.json -------------------------------------------------------------------------------- /t/data/metrics/smtp_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/metrics/smtp_1.json -------------------------------------------------------------------------------- /t/data/metrics/smtp_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/metrics/smtp_2.json -------------------------------------------------------------------------------- /t/data/metrics/smtp_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/metrics/smtp_3.json -------------------------------------------------------------------------------- /t/data/metrics/smtp_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/metrics/smtp_4.json -------------------------------------------------------------------------------- /t/data/metrics/smtp_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/metrics/smtp_5.json -------------------------------------------------------------------------------- /t/data/source/dmarc_multi.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/dmarc_multi.eml -------------------------------------------------------------------------------- /t/data/source/dmarc_reject.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/dmarc_reject.eml -------------------------------------------------------------------------------- /t/data/source/dmarc_reject_case.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/dmarc_reject_case.eml -------------------------------------------------------------------------------- /t/data/source/dmarc_reject_wl.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/dmarc_reject_wl.eml -------------------------------------------------------------------------------- /t/data/source/google_apps_bad.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/google_apps_bad.eml -------------------------------------------------------------------------------- /t/data/source/google_apps_bad_space.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/google_apps_bad_space.eml -------------------------------------------------------------------------------- /t/data/source/google_apps_good.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/google_apps_good.eml -------------------------------------------------------------------------------- /t/data/source/google_apps_good_case.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/google_apps_good_case.eml -------------------------------------------------------------------------------- /t/data/source/google_apps_good_sanitize.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/google_apps_good_sanitize.eml -------------------------------------------------------------------------------- /t/data/source/google_apps_headers.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/google_apps_headers.eml -------------------------------------------------------------------------------- /t/data/source/google_apps_nodkim.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/google_apps_nodkim.eml -------------------------------------------------------------------------------- /t/data/source/google_apps_noxgdkim.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/google_apps_noxgdkim.eml -------------------------------------------------------------------------------- /t/data/source/list.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/list.eml -------------------------------------------------------------------------------- /t/data/source/longlines.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/longlines.eml -------------------------------------------------------------------------------- /t/data/source/spam_headers.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/spam_headers.eml -------------------------------------------------------------------------------- /t/data/source/tools_test.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/tools_test.eml -------------------------------------------------------------------------------- /t/data/source/transparency.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/data/source/transparency.eml -------------------------------------------------------------------------------- /t/dev-boilerplate.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/dev-boilerplate.t -------------------------------------------------------------------------------- /t/dev-critic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/dev-critic.t -------------------------------------------------------------------------------- /t/dev-manifest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/dev-manifest.t -------------------------------------------------------------------------------- /t/dev-pod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/dev-pod.t -------------------------------------------------------------------------------- /t/get_record.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/get_record.pl -------------------------------------------------------------------------------- /t/perlcriticrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/perlcriticrc -------------------------------------------------------------------------------- /t/zonefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/t/zonefile -------------------------------------------------------------------------------- /weaver.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmail/authentication_milter/HEAD/weaver.ini --------------------------------------------------------------------------------