mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09: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
 | |
| 	}
 | |
| )
 |