Page 1 of 1

LUA sendmail script executes multiple times

Posted: Mon Mar 28, 2011 9:49 am
by andrewr_scl
I have created a FTP Event to Write Log OnFileUploaded
This creates %Name_%DD%MM%YYYY.txt and appends a line for each file uploaded.
This works as expected.

I have also created another FTP Event OnUserDisconnect
This runs the following LUA Script:

if ("%Name" == "ACME") then c_SendMail("user@email.co.uk","%Name FTP Activity","Please check log for file upload activity","D://logs/Upload/%Name/%Name_%DD%MM%YYYY.txt","SMTP1")
end

This executes on disconnect, sends the email with the log file attached.
Sounds perfect EXCEPT the email is sent 3 times. Any ideas?

Re: LUA sendmail script executes multiple times

Posted: Tue Mar 29, 2011 3:12 am
by FTP
I don't think so, when this event is triggered, the lua script will be executed for one time. You can verify it with a simple script like this:

c_AddAdminLog("%Name logged out",1)


It will just add an admin log.

Re: LUA sendmail script executes multiple times

Posted: Sat Mar 25, 2023 5:49 pm
by DomDis
FTP wrote: Tue Mar 29, 2011 3:12 am c_AddAdminLog("%Name logged out",1)
I tried doing a search on c_AddAdminLog from the forum index but it came up empty

What other types are available for loging ?
What other logs can I have my scripts write to ?