```go type Feature int const ( FeatureSMTPUTF8 = 1<<iota FeatureREQUIRETLS FeatureBINARYMIME ) // ... type Backend interface { // ... Features() Feature } ```