mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
26 lines
445 B
Go
Vendored
26 lines
445 B
Go
Vendored
// +build !go1.5
|
|
|
|
package gomail
|
|
|
|
import "gopkg.in/alexcesaro/quotedprintable.v3"
|
|
|
|
var newQPWriter = quotedprintable.NewWriter
|
|
|
|
type mimeEncoder struct {
|
|
quotedprintable.WordEncoder
|
|
}
|
|
|
|
var (
|
|
bEncoding = mimeEncoder{quotedprintable.BEncoding}
|
|
qEncoding = mimeEncoder{quotedprintable.QEncoding}
|
|
lastIndexByte = func(s string, c byte) int {
|
|
for i := len(s) - 1; i >= 0; i-- {
|
|
|
|
if s[i] == c {
|
|
return i
|
|
}
|
|
}
|
|
return -1
|
|
}
|
|
)
|