Stephen Beitzel
Stephen Beitzel
## Description Add a folding function to the Mail struct and apply it to headers which might generate lines longer than the RFC-suggested 78 characters (or mandated 998 characters). ##...
Fix issue #107 by only trying to authenticate if the server advertises the AUTH extended capability. ## Description During socket initialization, we will check to see if the server even...
Currently the library just assumes that if it's not version 1.x that's on the build machine, then it's 2.x. However, Ubuntu "jammy" is now shipping 3.x by default and that's...
Steps to reproduce: 1. launch dumbster, e.g.: [swbeitze@daystar ~]$ java -jar src/github/dumbster/build/dumbster.jar 8989 2. open a telnet session to the local dumbster: [swbeitze@daystar ~]$ telnet localhost 8989 3. observe the...
There are a couple of code blocks in `AnimatableEmojiCell.swift` that conditionally compile if the OS is at least 12. Since macOS 12 is now the lowest supported version, let's clean...
We're supposed to stop using NSUserNotifications and start using UserNotifications. These are showing up in `AppDelegate` and `UserNotificationTool`.
This deprecation warning is showing up in `TimelinesWindowController.swift`: > 'init(forReadingWith:)' was deprecated in macOS 10.14: Use -initForReadingFromData:error: instead Fixing this involves catching and doing something (useful or helpful, one hopes)...
Running a debug build of this project for the first time, I go through the sign-in flow. This ultimately calls into the method `referenceForApplicationAtURL` in NSBundle+KeychainAccess.m in the CoreTootin module....
This PR adds a CHANGELOG as well as fixing the deprecation warning for `TimelinesWindowController`. Fixes #29
Remove conditional compilation blocks, since we are always on macOS 12 or later. This fixes #33