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
 |