[tor-commits] [bridgedb/master] change our hard-coded smtp server

arma at torproject.org arma at torproject.org
Fri Sep 16 00:45:52 UTC 2011


commit 3c70eb4eb8ab675ecdf797c60b742e0d36adcc8e
Author: Roger Dingledine <arma at torproject.org>
Date:   Thu Sep 15 20:38:53 2011 -0400

    change our hard-coded smtp server
---
 lib/bridgedb/Server.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/lib/bridgedb/Server.py b/lib/bridgedb/Server.py
index 2becee8..20b349b 100644
--- a/lib/bridgedb/Server.py
+++ b/lib/bridgedb/Server.py
@@ -338,7 +338,8 @@ class MailContext:
         # Reject any mail longer than this.
         self.maximumSize = 32*1024
         # Use this server for outgoing mail.
-        self.smtpServer = "127.0.0.1"
+#        self.smtpServer = "127.0.0.1" # XXX should make configurable
+        self.smtpServer = "172.22.121.1"
         self.smtpPort = 25
         # Use this address in the MAIL FROM line for outgoing mail.
         self.smtpFromAddr = (cfg.EMAIL_SMTP_FROM_ADDR or



More information about the tor-commits mailing list