This file is indexed.

/usr/share/zentyal/stubs/squid/greyurllist.mas is in zentyal-squid 2.3.3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<%args>
    @urls
    @includes => ()
</%args>
#URLs in grey list
#Don't bother with the http:// or the www

#The greyurllist is for partly unblocking PART of a site
#The greysitelist is for partly unblocking ALL of a site

#The 'grey' lists override the 'banned' lists.
#The 'exception' lists override the 'banned' lists also.
#The difference is that the 'exception' lists completely switch
#off *all* other filtering for the match.  'grey' lists only
#stop the URL filtering and allow the normal filtering to work.

#An example of grey list use is when in Blanket Block (whitelist)
#mode and you want to allow some sites but still filter as normal
#on their content

#Another example of grey list use is when you ban a site but want
#to allow part of it.

#To include additional files in this list use this example:
#.Include</etc/dansguardian/anotherurllist>

#You can have multiple .Includes.

#List other URLs to block:

#members.home.net/nice

% foreach my $url (@urls) {
<% $url %>
	
% }


# included files
% foreach my $path (@includes) {
%   $path = '<' . $path . '>';
.Include<% $path %>
% }