mirror of
https://github.com/Relintai/smtp_node.git
synced 2024-12-19 22:16:56 +01:00
Update SMTP-NodeCode
This commit is contained in:
parent
c1c74ab4c7
commit
5e519a41d8
@ -21,10 +21,6 @@ export var mymail = "mail.smtp.localhost" # I found this at some random stackexc
|
||||
enum channel {TCP,PACKET}
|
||||
export (channel) var com = channel.TCP
|
||||
|
||||
|
||||
var authloginbase64=""
|
||||
var authpassbase64=""
|
||||
|
||||
var Socket = null
|
||||
var PacketSocket = null
|
||||
var PacketIn = ""
|
||||
@ -39,7 +35,9 @@ var MaxRetries = 5
|
||||
var delayTime = 250
|
||||
|
||||
var thread = null
|
||||
#
|
||||
|
||||
var authloginbase64=""
|
||||
var authpassbase64=""
|
||||
func _ready():
|
||||
if user != "": authloginbase64=Marshalls.raw_to_base64(user.to_ascii())
|
||||
if password != "": authpassbase64=Marshalls.raw_to_base64(password.to_ascii())
|
||||
|
Loading…
Reference in New Issue
Block a user