# Dummy # # @Requires: 1.1 RC2 # @Version: 1.0 sub getInfo local(info) info.name = "dummy" info.authors[0] = "Martin Vlcek " info.version = "1.0" info.updateService = "" info.documentationLink = "" return info end sub getExtensions return list("@dummy.com") end sub loginForReceive(username,password) msgs = list() return true end sub receive(msg) msg.from = "me@dummy.com" msg.to = "you@dummy.com" msg.text = "Hi" return msg end sub delete(msgs) return true end sub loginForSend(username,password) return true end sub send(msg) return true end sub logout return true end