[or-cvs] r12827: two config changes (in bridgedb/trunk: . lib/bridgedb)

arma at seul.org arma at seul.org
Sat Dec 15 22:03:05 UTC 2007


Author: arma
Date: 2007-12-15 17:03:04 -0500 (Sat, 15 Dec 2007)
New Revision: 12827

Modified:
   bridgedb/trunk/README
   bridgedb/trunk/bridgedb.conf
   bridgedb/trunk/lib/bridgedb/Server.py
   bridgedb/trunk/setup.py
Log:
two config changes


Modified: bridgedb/trunk/README
===================================================================
--- bridgedb/trunk/README	2007-12-15 20:50:56 UTC (rev 12826)
+++ bridgedb/trunk/README	2007-12-15 22:03:04 UTC (rev 12827)
@@ -5,10 +5,8 @@
  - python setup.py install --prefix=$HOME
  - Edit bridgedb.conf; put it somewhere good.
  - Make sure that the input files referred to in bridgedb.conf exist.
-   - Yes, this includes all of them.
-     - Yes, even the cert file.
-       - You can make a self-signed certificate with
-         openssl req -x509 -new -nodes > ! cert
+   - You can make a self-signed certificate with
+     openssl req -x509 -new -nodes > cert
  - Set up PYTHONPATH to include "~/lib/python2.4/site-packages/".
 
 To run:

Modified: bridgedb/trunk/bridgedb.conf
===================================================================
--- bridgedb/trunk/bridgedb.conf	2007-12-15 20:50:56 UTC (rev 12826)
+++ bridgedb/trunk/bridgedb.conf	2007-12-15 22:03:04 UTC (rev 12827)
@@ -46,7 +46,7 @@
 HTTP_UNENCRYPTED_BIND_IP=None
 HTTP_UNENCRYPTED_PORT=None
 # How many bridges do we give back in an answer?
-HTTPS_N_BRIDGES_PER_ANSWER=2
+HTTPS_N_BRIDGES_PER_ANSWER=3
 
 #==========
 # Options related to Email
@@ -68,7 +68,7 @@
 # IP and port to listen on for email connections. Debugging only.
 EMAIL_BIND_IP=None
 EMAIL_PORT=6725
-# How many bridges to we give back in an answer?
+# How many bridges do we give back in an answer?
 EMAIL_N_BRIDGES_PER_ANSWER=2
 
 #==========
@@ -78,8 +78,7 @@
 # accessible by email queries; and a group that we don't assign to any
 # query mechanism.  Once a bridge is assigned to either of the first
 # two groups, it stays there persistently.  The bridges are allocated
-# to these groups in an proportion of
+# to these groups in a proportion of
 #   HTTPS_SHARE : EMAIL_SHARE : RESERVED_SHARE
 RESERVED_SHARE=2
 
-

Modified: bridgedb/trunk/lib/bridgedb/Server.py
===================================================================
--- bridgedb/trunk/lib/bridgedb/Server.py	2007-12-15 20:50:56 UTC (rev 12826)
+++ bridgedb/trunk/lib/bridgedb/Server.py	2007-12-15 22:03:04 UTC (rev 12827)
@@ -137,7 +137,7 @@
         self.maximumSize = 32*1024
         self.smtpServer = "127.0.0.1"
         self.smtpPort = 25
-        self.fromAddr = "bridges at bridges.torproject.org"
+        self.fromAddr = "bridges at torproject.org"
         self.distributor = dist
         self.schedule = sched
         self.N = cfg.EMAIL_N_BRIDGES_PER_ANSWER

Modified: bridgedb/trunk/setup.py
===================================================================
--- bridgedb/trunk/setup.py	2007-12-15 20:50:56 UTC (rev 12826)
+++ bridgedb/trunk/setup.py	2007-12-15 22:03:04 UTC (rev 12827)
@@ -1,6 +1,6 @@
 # BridgeDB by Nick Mathewson.
 # Copyright (c) 2007, The Tor Project, Inc.
-# See LICENSE for licensing informatino
+# See LICENSE for licensing information
 
 import distutils
 import sys



More information about the tor-commits mailing list