Re: SFTP delete file with space

2012-05-18 Thread Michael Wood
Hi On 18 May 2012 14:22, Anders Havn wrote: > Hi again, > > I solved the problem by adding quotation signs around the name and > encoding the full filePath: > NSString* fullFilePath = @"ftp://myftpserver.org/UserFolder/Test%20xyz.txt";; > NSString* filePath = @"rm \"/UserFolder/Test xyz.txt\"";

Re: SFTP delete file with space

2012-05-18 Thread Anders Havn
Hi again, I solved the problem by adding quotation signs around the name and encoding the full filePath: NSString* fullFilePath = @"ftp://myftpserver.org/UserFolder/Test%20xyz.txt";; NSString* filePath = @"rm \"/UserFolder/Test xyz.txt\""; Thank you. Best Regards, Anders Havn On Thu, May 17, 20

POP3 Authentication

2012-05-18 Thread Steve Holme
Hi all, I took the opportunity last night to add support to POP3 for more secure authentication mechanisms in a local branch. This was a relatively easy process, borrowing a few bits of code from SMTP. Rather than define a new bunch of authentication mechanisms equivalent to the SMTP_AUTH_*