An open API service indexing awesome lists of open source software.

https://github.com/sparkpost/lua-policies

Example business policies, implemented in the Momentum Business Policy Framework
https://github.com/sparkpost/lua-policies

Last synced: 6 months ago
JSON representation

Example business policies, implemented in the Momentum Business Policy Framework

Awesome Lists containing this project

README

          

lua-policies
============

Example business policies, implemented in the Momentum Business Policy Framework.

These Lua modules only work within the Momentum messaging server, and are provided by Message Systems as a way to help build your own custom policy. Suggested changes or forks are encouraged.

These policies are loaded by loading the included policy.lua file into Momentum:


scriptlet "scriptlet" {
script "policy" {
source = "policy"
}
}

And then adding your policy to this array in policy.lua:


-- This is the list of policies to load, a Lua array
local policies = {
"inbound.limits",
"inbound.rbl",
"inbound.fcdns",
};