aboutsummaryrefslogtreecommitdiff
path: root/src/or/policies.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-09-13 10:04:42 +0000
committerRoger Dingledine <arma@torproject.org>2008-09-13 10:04:42 +0000
commit2d95accc75133248d6c3a7c93c5211488f060de6 (patch)
tree4a32a33b6d3d4bf351a002789a569a055dff6336 /src/or/policies.c
parentabb5febd8a97267ec24bc0b5e1435c69261e02b6 (diff)
downloadtor-2d95accc75133248d6c3a7c93c5211488f060de6.tar.gz
tor-2d95accc75133248d6c3a7c93c5211488f060de6.zip
Allow ports 465 and 587 in the default exit policy again. We had
rejected them in 0.1.0.15, because back in 2005 they were commonly misconfigured and ended up as spam targets. We hear they are better locked down these days. svn:r16898
Diffstat (limited to 'src/or/policies.c')
-rw-r--r--src/or/policies.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/policies.c b/src/or/policies.c
index b6816a1615..64d73375c8 100644
--- a/src/or/policies.c
+++ b/src/or/policies.c
@@ -775,8 +775,7 @@ exit_policy_remove_redundancies(smartlist_t *dest)
#define DEFAULT_EXIT_POLICY \
"reject *:25,reject *:119,reject *:135-139,reject *:445," \
- "reject *:465,reject *:563,reject *:587," \
- "reject *:1214,reject *:4661-4666," \
+ "reject *:563,reject *:1214,reject *:4661-4666," \
"reject *:6346-6429,reject *:6699,reject *:6881-6999,accept *:*"
/** Parse the exit policy <b>cfg</b> into the linked list *<b>dest</b>. If