On Sat, Mar 15, 2008 at 2:13 AM, Lanthanaël <lanthanael@xxxxxxxxx> wrote:
Hi!
I want to know more about that stuff to exclude domains from the TOR
circuits, but I'm an ole SeaMonkey user and FoxyProxy is only for
Firefox, are there other Plugins which work with SeaMonkey too? Because
I wasn't able to finde stuff on the net how to exclude domains from the
onion routing.
Any help will be appreciated, Lanthanaël
The Tor bundle comes with Privoxy, which provides the fine-grained
control you need.
As a quick minimalist example (not recommended for real-life usage as
it makes no use of the privacy-related features that Privoxy offers),
the following configuration parameters lets you use Privoxy with Tor:
confdir .
logdir .
listen-address 127.0.0.1:8118
forward-socks4a / 127.0.0.1:9050 .
If you want to forward everything through Tor, except requests going
to any hostname under example.com, you would have this instead:
confdir .
logdir .
listen-address 127.0.0.1:8118
forward-socks4a / 127.0.0.1:9050 .
forward .example.com .
For details, refer to the Privoxy manual:
<http://www.privoxy.org/user-manual/index.html>
Cheers,
John