d659ed67de
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
5 lines
149 B
Swift
5 lines
149 B
Swift
public enum SMTPSecurity: String, Sendable, Codable {
|
|
case ssl // implicit TLS, port 465
|
|
case starttls // upgrade after connect, port 587
|
|
}
|