Advertisement
PCKid11

ComputerCraft eMail server V2!

Jun 17th, 2012
10,763
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.81 KB | None | 0 0
  1.     -- This is the server code. For the client, go to http://pastebin.com/peCQzp0E
  2.     print("Running eMail server")
  3.     rednet.open("right")
  4.     while true do
  5.     id, message = rednet.receive()
  6.     if fs.exists(id .. message) then
  7.     mail = fs.open(id .. message, "r")
  8.     print("Computer " .. id .. " read his mail number " .. message)
  9.     readmail = mail.readAll()
  10.     rednet.broadcast(readmail)
  11.     mail.close()
  12.     fs.delete(id)
  13.     else if message == "sendmail" then
  14.     id1, to = rednet.receive()
  15.     a = 1
  16.     while fs.exists(to .. a) do
  17.     a = a + 1
  18.     end
  19.     mail = fs.open(to .. a, "w")
  20.     mail.writeLine("From: " .. id)
  21.     mail.writeLine("To: " .. to)
  22.     id2, tm = rednet.receive()
  23.     mail.write(tm)
  24.     mail.close()
  25.     print("Computer " .. id .. " sent Mail to " .. to)
  26.     end
  27.     end
  28.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement