diff options
author | Roger Dingledine <arma@torproject.org> | 2004-02-18 04:02:05 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-02-18 04:02:05 +0000 |
commit | 4e178907abc0b9cccbd7a5fc0fd19c98d87f3eee (patch) | |
tree | 8c3f97bfc305d831c391511891ccbc7bd782f927 /src | |
parent | 7562a62ef098900858c8b71dbaf955a52963367a (diff) | |
download | tor-4e178907abc0b9cccbd7a5fc0fd19c98d87f3eee.tar tor-4e178907abc0b9cccbd7a5fc0fd19c98d87f3eee.tar.gz |
allow imaps and pop3s in default exit policy
svn:r1104
Diffstat (limited to 'src')
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index f4cb9bc70..877a1dfa8 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -260,7 +260,7 @@ void init_options(or_options_t *options) { options->ExitNodes = tor_strdup(""); options->EntryNodes = tor_strdup(""); options->ExcludedNodes = tor_strdup(""); - options->ExitPolicy = tor_strdup("reject 0.0.0.0/8,reject 169.254.0.0/16,reject 127.0.0.0/8,reject 192.168.0.0/16,reject 10.0.0.0/8,reject 172.16.0.0/12,accept *:20-22,accept *:53,accept *:79-80,accept *:110,accept *:143,accept *:443,accept *:873,accept *:1024-65535,reject *:*"); + options->ExitPolicy = tor_strdup("reject 0.0.0.0/8,reject 169.254.0.0/16,reject 127.0.0.0/8,reject 192.168.0.0/16,reject 10.0.0.0/8,reject 172.16.0.0/12,accept *:20-22,accept *:53,accept *:79-80,accept *:110,accept *:143,accept *:443,accept *:873,accept *:993,accept *:995,accept *:1024-65535,reject *:*"); options->ExitPolicyPrepend = tor_strdup(""); options->SocksBindAddress = tor_strdup("127.0.0.1"); options->ORBindAddress = tor_strdup("0.0.0.0"); |