mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-01-18 11:25:28 +00:00
10 lines
132 B
Lua
10 lines
132 B
Lua
rspamd_config.MAILCOW_AUTH = {
|
|
callback = function(task)
|
|
local uname = task:get_user()
|
|
if uname then
|
|
return 1
|
|
end
|
|
end
|
|
}
|
|
|