Forward server working on Mac OS X...

This commit is contained in:
Diego Nehab 2005-02-08 10:01:01 +00:00
parent 5d32848674
commit 8d4e240f6a
29 changed files with 800 additions and 101 deletions

View file

@ -69,7 +69,7 @@ To obtain the <tt>smtp</tt> namespace, run:
<pre class=example>
-- loads the SMTP module and everything it requires
local smtp = require("smtp")
local smtp = require("socket.smtp")
</pre>
<p>
@ -239,7 +239,7 @@ and
<pre class=example>
-- load the smtp support
local smtp = require("smtp")
local smtp = require("socket.smtp")
-- Connects to server "localhost" and sends a message to users
-- "fulano@example.com", "beltrano@example.com",
@ -329,7 +329,7 @@ as listed in the introduction. </p>
<pre class=example>
-- load the smtp support and its friends
local smtp = require("smtp")
local smtp = require("socket.smtp")
local mime = require("mime")
local ltn12 = require("ltn12")