Posts

Post not yet marked as solved
0 Replies
237 Views
Hello,I search for an pop3/imap library that works on swift 4 or later for an macOS App. I have tried Postal but it don't work for me.I would be very happy if someone knows a very good and if possible a free library that works on Swift 4 or later.Greetings,Sven
Posted
by sm-a.
Last updated
.
Post not yet marked as solved
1 Replies
414 Views
Hello,I am new in this forum and I hope I get help here.When I use the following code I get only "ENDED" but nothing else back in the console. No error message. What I am doing wrong?A happy New Year to all.Greetings,Svenimport Foundation import Postal let postal : Postal = Postal(configuration: Configuration(hostname: "email.none.none", port: 993, login: "none@none.none", password: .plain("test"), connectionType: .tls, checkCertificateEnabled: true, batchSize: 1000, spamFolderName: "junk")) func getEmail() { let indexset = IndexSet(integer: 1) postal.fetchMessages("INBOX", uids: indexset, flags: [ .headers ], onMessage: { email in print("new email received: \(email)") }, onComplete: { error in if error == error { print("an error occured: \(error)") } }) } postal.connect { result in switch result { case .success: getEmail() case .failure(let error): print("error: \(error)") } } print("ENDED")
Posted
by sm-a.
Last updated
.