mirror of
https://github.com/DanWin/mail-hosting.git
synced 2024-11-22 07:30:26 +00:00
8 lines
137 B
Lua
8 lines
137 B
Lua
rspamd_config.AUTHENTICATED_USER = {
|
|
callback = function(task)
|
|
local uname = task:get_user()
|
|
if uname then
|
|
return 1
|
|
end
|
|
end
|
|
}
|