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

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: Restricting hidden files to upload

2017-02-20 Thread Gary Bell
I would look at overriding the NativeFtpFile.listFiles() method to achieve this. The filesystem is pluggable and comes with a native filesystem implementation by default; but you can implement your own and therefore obtain whatever functionality you need.

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 t

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 rea

Gary Bell is on holiday but will be back tomorrow

2012-09-04 Thread gary . bell
I will be out of the office starting 04/09/2012 and will not return until 05/09/2012. Please send any support requests to belfast_r...@aero.bombardier.com

Gary Bell is on holiday

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

Gary Bell is on Holiday

2012-05-04 Thread gary . bell
I will be out of the office starting 04/05/2012 and will not return until 08/05/2012. For Cseries support please continue to send your issues to me and I will log them on Tuesday. For urgent support, contact your Integrator who will be able to contact me.

Gary Bell is on Holiday

2012-04-12 Thread gary . bell
I will be out of the office starting 06/04/2012 and will not return until 16/04/2012. Limited CSeries release support is available during the Easter closure. If you need support on any of the following topics then please contact Justin Rotundo at the address shown: CITRIX errors / problems gett

Gary Bell is unavailable at present

2012-02-20 Thread gary . bell
I will be out of the office starting 09/02/2012 and will not return until 29/02/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 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).

Re: Accessing Files from other users home folder?

2011-12-15 Thread gary . bell
unix symlinks to achieve the same result. Best Regards, Gary Bell Nilesh Apte To

Re: Custom implementations for FTP commands

2011-04-07 Thread gary . bell
HI Bernd, You will need to roll your own FileSystemFactory and FileSystemView classes, and probably your own FtpFile class. You then register your FileSystemFactory class in the ftpd.xml file. Best Regards, Gary Bell

Re: Enrich error messages

2010-06-25 Thread gary . bell
D_ACTION_NOT_TAKEN, "Session is not secure. Issue PROT P command first.); session.write(reply); return FtpletResult.SKIP; } return super.onUploadStart(session, request); } Best Regards, Gary Bell.

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) th

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 option

Re: Stability and reliability issues

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

Re: IOException on ftp client disconnect

2009-01-22 Thread gary . bell
You also get something similar using filezilla in SSL mode when it disconnects: [DEBUG] 2009-01-19 12:04:40,288 [] [] Unexpected exception from SSLEngine.closeInbound(). javax.net.ssl.SSLException: Inbound closed before receiving peer's close_notify: possible truncation attack? at com.sun.n

Re: Using FTPS

2009-01-22 Thread gary . bell
-most-common-java-keytool-keystore-commands.html - Does it work OK if you create a self-signed cert using keytool? Best Regards, Gary Bell