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?
LUA sendmail script executes multiple times
-
- Posts: 1
- Joined: Mon Mar 28, 2011 9:29 am
-
- Site Admin
- Posts: 2107
- Joined: Tue Sep 29, 2009 6:09 am
Re: LUA sendmail script executes multiple times
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.
c_AddAdminLog("%Name logged out",1)
It will just add an admin log.
-
- Posts: 32
- Joined: Sat Mar 18, 2023 7:44 pm