[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] r16898: {tor} Allow ports 465 and 587 in the default exit policy again. We (in tor/trunk: . doc src/or)



Author: arma
Date: 2008-09-13 06:04:42 -0400 (Sat, 13 Sep 2008)
New Revision: 16898

Modified:
   tor/trunk/ChangeLog
   tor/trunk/doc/tor.1.in
   tor/trunk/src/or/policies.c
Log:
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.


Modified: tor/trunk/ChangeLog
===================================================================
--- tor/trunk/ChangeLog	2008-09-13 09:55:56 UTC (rev 16897)
+++ tor/trunk/ChangeLog	2008-09-13 10:04:42 UTC (rev 16898)
@@ -26,6 +26,10 @@
       fails to establish a TCP connection. Cleanup on 0.2.1.x.
 
   o Minor features:
+    - 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.
     - Use a lockfile to make sure that two Tor processes are not
       simultaneously running with the same datadir.
     - Directory mirrors store and serve v2 hidden service descriptors by

Modified: tor/trunk/doc/tor.1.in
===================================================================
--- tor/trunk/doc/tor.1.in	2008-09-13 09:55:56 UTC (rev 16897)
+++ tor/trunk/doc/tor.1.in	2008-09-13 10:04:42 UTC (rev 16898)
@@ -832,9 +832,7 @@
 .IP "reject *:119"
 .IP "reject *:135-139"
 .IP "reject *:445"
-.IP "reject *:465"
 .IP "reject *:563"
-.IP "reject *:587"
 .IP "reject *:1214"
 .IP "reject *:4661-4666"
 .IP "reject *:6346-6429"

Modified: tor/trunk/src/or/policies.c
===================================================================
--- tor/trunk/src/or/policies.c	2008-09-13 09:55:56 UTC (rev 16897)
+++ tor/trunk/src/or/policies.c	2008-09-13 10:04:42 UTC (rev 16898)
@@ -775,8 +775,7 @@
 
 #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