summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-02-18 04:02:05 +0000
committerRoger Dingledine <arma@torproject.org>2004-02-18 04:02:05 +0000
commit4e178907abc0b9cccbd7a5fc0fd19c98d87f3eee (patch)
tree8c3f97bfc305d831c391511891ccbc7bd782f927
parent7562a62ef098900858c8b71dbaf955a52963367a (diff)
downloadtor-4e178907abc0b9cccbd7a5fc0fd19c98d87f3eee.tar.gz
tor-4e178907abc0b9cccbd7a5fc0fd19c98d87f3eee.zip
allow imaps and pop3s in default exit policy
svn:r1104
-rw-r--r--src/or/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c
index f4cb9bc701..877a1dfa86 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");