6

I'm using Fedora 14 with privoxy-3.0.16-3.fc14.i686! These sites are blocked by Privoxy:

How can I whitelist these two sites/urls? I want to be able to visit these sites without being blocked (but e.g.: still block the ads on it)

Michael Mrozek
  • 91,316
  • 38
  • 238
  • 232
LanceBaynes
  • 39,295
  • 97
  • 250
  • 349

3 Answers3

5

If those pages aren't ads by themselves, they should be whitelisted/marked as not ads like you say.

I'm using Ubuntu, but the configs should be about the same on fedora. The file /etc/privoxy/user.action is meant for your own configurations. Locate the { -filter } line and add your url below it.

I haven't tested it myself, but considering the semantics, it should work

Masse
  • 151
  • 2
2

add this to your user.action:

{-block -filter}
<your url pattern>
eudemonics
  • 131
  • 2
1

If your problem is that the site itself is blocking the content because it detects that Privoxy is blocking the ads, then you need to do and edit like this in your user.action file:

{ allow-ads }
.wired.com

In that example, Wired was not allowing me to read articles before the edit, because it detected an add blocker on mi side.

After the edit, I can read Wired just fine.

HalosGhost
  • 4,732
  • 10
  • 33
  • 41