What is the diffrence between noblacklist
and whitelist
?
#4247
-
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
|
Beta Was this translation helpful? Give feedback.
-
because of missing
no
whitelisting enabled, everything else hidden |
Beta Was this translation helpful? Give feedback.
-
how is the depth determined in whitelist |
Beta Was this translation helpful? Give feedback.
noblacklist
noblacklist ${HOME}/foo/bar
makes that all followingblacklist ${HOME}/foo/bar
commands are ignored.It is, if you will, only syntactic-sugar for
ignore blacklist ${HOME}/foo/bar
.noblacklist ${HOME}/foo/bar
withoutblacklist ${HOME}/foo/bar
in ainclude disable-*.inc
is just useless.noblacklist ${HOME}/foo/bar
andblacklist ${HOME}/foo
does not work. You can onlynoblacklist
a path that isblacklist
ed.
whitelist
whitelist ${HOME}/foo/bar
enableswhitelist
ing in${HOME}
(i.e. everything without a explicit whitelist is hidden and discard on close) and makes${HOME}/foo/bar
and persistent.blacklist ${HOME}/foo/bar
is still applied, even withwhitelist ${HOME}/foo/bar