diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-06-22 04:49:57 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-06-22 04:49:57 +0000 |
commit | 7195ab620bd5029856a5c6c88e54a9a6eceb5e87 (patch) | |
tree | 9b60807d8bb2112dcec6ea2e0991e468b112ea5a /test | |
parent | bce1cb30d856d167e167c4c2997f9bebe03a612c (diff) | |
download | luasocket-7195ab620bd5029856a5c6c88e54a9a6eceb5e87.tar.gz luasocket-7195ab620bd5029856a5c6c88e54a9a6eceb5e87.tar.bz2 luasocket-7195ab620bd5029856a5c6c88e54a9a6eceb5e87.zip |
Few extra changes.
Diffstat (limited to 'test')
-rw-r--r-- | test/testmesg.lua | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/testmesg.lua b/test/testmesg.lua index 3555031..e29b3cb 100644 --- a/test/testmesg.lua +++ b/test/testmesg.lua | |||
@@ -50,9 +50,11 @@ source = smtp.message{ | |||
50 | 50 | ||
51 | -- finally send it | 51 | -- finally send it |
52 | r, e = smtp.send{ | 52 | r, e = smtp.send{ |
53 | rcpt = "<fulano@tecgraf.puc-rio.br>", | 53 | rcpt = {"<diego@tecgraf.puc-rio.br>", |
54 | from = "<sicrano@tecgraf.puc-rio.br>", | 54 | "<diego@princeton.edu>" }, |
55 | source = source | 55 | from = "<diego@princeton.edu>", |
56 | source = source, | ||
57 | server = "mail.cs.princeton.edu" | ||
56 | } | 58 | } |
57 | 59 | ||
58 | print(r, e) | 60 | print(r, e) |