|  | @@ -1167,12 +1167,13 @@ function get_logs($container, $lines = false) {
 | 
	
		
			
				|  |  |    }
 | 
	
		
			
				|  |  |    if ($container == "rspamd-history") {
 | 
	
		
			
				|  |  |      $curl = curl_init();
 | 
	
		
			
				|  |  | +    curl_setopt($curl, CURLOPT_UNIX_SOCKET_PATH, '/rspamd-sock/rspamd.sock');
 | 
	
		
			
				|  |  |      if (!is_numeric($lines)) {
 | 
	
		
			
				|  |  |        list ($from, $to) = explode('-', $lines);
 | 
	
		
			
				|  |  | -      curl_setopt($curl, CURLOPT_URL,"http://rspamd-mailcow:11334/history?from=" . intval($from) . "&to=" . intval($to));
 | 
	
		
			
				|  |  | +      curl_setopt($curl, CURLOPT_URL,"http://rspamd/history?from=" . intval($from) . "&to=" . intval($to));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |      else {
 | 
	
		
			
				|  |  | -      curl_setopt($curl, CURLOPT_URL,"http://rspamd-mailcow:11334/history?to=" . intval($lines));
 | 
	
		
			
				|  |  | +      curl_setopt($curl, CURLOPT_URL,"http://rspamd/history?to=" . intval($lines));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |      curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
 | 
	
		
			
				|  |  |      $history = curl_exec($curl);
 |