Re: Prefix for mails to user@commons.apache.org?

2016-08-31 Thread sebb
On 30 August 2016 at 22:14, Thomas Brand wrote: > > Hi, > i understand that using the list-id in the header is the correct thing to > do, and using that id is certainly an elegant way to i.e. automatically > file these messages into its own folder. However setting up filters isn't > sometimes easy

Re: NPE in getRemoteAdress

2016-08-31 Thread sebb
FTPClient instances are independent; each can be used by a separate thread. However note that the instances are not inherently thread-safe. So either create the instance in the same thread that does the download. Alternatively, create the client before creating the thread, and ensure that the cli