mirror of
https://github.com/fergalmoran/mailcow-dockerized.git
synced 2026-01-28 19:43:58 +00:00
13 lines
193 B
Lua
13 lines
193 B
Lua
rspamd_config.MAILCOW_AUTH = {
|
|
callback = function(task)
|
|
local uname = task:get_user()
|
|
if uname then
|
|
return 1
|
|
end
|
|
end
|
|
}
|
|
|
|
rspamd_config.MAILCOW_MOO = function (task)
|
|
return true
|
|
end
|