aboutsummaryrefslogtreecommitdiffstats
path: root/torturetest.py
diff options
context:
space:
mode:
Diffstat (limited to 'torturetest.py')
-rwxr-xr-xtorturetest.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/torturetest.py b/torturetest.py
index 48bf4881..9f5d86cc 100755
--- a/torturetest.py
+++ b/torturetest.py
@@ -63,7 +63,10 @@ class TestSite:
"Send test mail to the site."
server = smtplib.SMTP("localhost")
fromaddr = "esr@thyrsus.com"
- toaddr = "%s@%s" % (self.mailname, self.host)
+ if string.find(self.mailname, "@") > -1:
+ toaddr = self.mailname
+ else:
+ toaddr = "%s@%s" % (self.mailname, self.host)
msg = ("From: %s\r\nTo: %s\r\n\r\n" % (fromaddr, toaddr))
if n != None:
msg += `n` + ": "