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