Re: Stability and reliability issues

2009-04-07 Thread gary . bell
now. Best Regards, Gary Bell

Re: FtpServer hitting its limit?

2009-10-08 Thread gary . bell
There is a good article on the time_wait state of sockets at http://www.developerweb.net/forum/showthread.php?t=2941 which mentions the SO_LINGER settings: ...Because of these potential problems with TIME_WAIT assassinations, one should not avoid the TIME_WAIT state by setting the SO_LINGER

RE: How to limit file upload and download to a set of directories.

2009-10-21 Thread gary . bell
I have something sort of similar in my code. I only allow uploads to a specific directory which for me is a well-defined name. Hope this helps: - cut --- public FtpletResult beforeCommand(FtpSession session, FtpRequest request)

Re: Accessing Files from other users home folder?

2011-12-15 Thread gary . bell
for unix symlinks to achieve the same result. Best Regards, Gary Bell Nilesh Apte nilesh.apte13@gm

Gary Bell is out of the office on Company business

2012-01-12 Thread gary . bell
I will be out of the office starting 10/01/2012 and will not return until 16/01/2012. For CSeries release support, please contact John Mitchell on Belfast ext. 62457 // john.mitch...@aero.bombardier.com (please Cc me on any emails).

Gary Bell is out of the office on Company business

2012-01-18 Thread gary . bell
I will be out of the office starting 16/01/2012 and will not return until 20/01/2012. For CSeries release support, please contact John Mitchell on Belfast ext. 62457 // john.mitch...@aero.bombardier.com (please Cc me on any emails).

Gary Bell is on holiday

2012-07-08 Thread gary . bell
(john.mitch...@aero.bombardier.com) Best Regards, Gary Bell Belfast RPST lead

RE: Restricting hidden files to upload

2017-02-20 Thread Gary Bell
Sorry, didn't read the OP properly. I would agree with John. I do something similar in my code.

RE: Custom welcome message

2017-02-16 Thread Gary Bell
Hi, I just tried that out and it worked form me on FtpServer-1.1.0. This is what I did: 0. Downloaded the latest FtpServer zip file and extracted it. 1. Created a new folder called \res\messages 2. Added a new file called FtpStatus.gen 3. Added my custom message for login like so: 220=JESTER

RE: Custom welcome message

2017-02-17 Thread Gary Bell
Hi Faseela, it looks like Filezilla is hiding the response string returned from ftpserver unless an error occurs (in which case it shows the full log in the log window). On filezilla 3.14.1, I got it to show the custom response message all the time by setting the debug level in the preferences

RE: how to disable plain ftp when server is configured with explicit ftp

2019-02-08 Thread Gary Bell
e boolean isSecureConnection(FtpSession session) { return (session.isSecure() && session.getDataConnection().isSecure()); } Best Regards, Gary Bell