mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	Allow mail with self-signed certificates
This commit is contained in:
		
							
								
								
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							@@ -17,7 +17,7 @@ import (
 | 
				
			|||||||
	"github.com/gogits/gogs/modules/setting"
 | 
						"github.com/gogits/gogs/modules/setting"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const APP_VER = "0.5.5.1008 Beta"
 | 
					const APP_VER = "0.5.5.1009 Beta"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func init() {
 | 
					func init() {
 | 
				
			||||||
	runtime.GOMAXPROCS(runtime.NumCPU())
 | 
						runtime.GOMAXPROCS(runtime.NumCPU())
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,7 +5,9 @@
 | 
				
			|||||||
package mailer
 | 
					package mailer
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import (
 | 
					import (
 | 
				
			||||||
 | 
						"crypto/tls"
 | 
				
			||||||
	"fmt"
 | 
						"fmt"
 | 
				
			||||||
 | 
						"net"
 | 
				
			||||||
	"net/smtp"
 | 
						"net/smtp"
 | 
				
			||||||
	"strings"
 | 
						"strings"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -64,6 +66,53 @@ func processMailQueue() {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// sendMail allows mail with self-signed certificates.
 | 
				
			||||||
 | 
					func sendMail(hostAddressWithPort string, auth smtp.Auth, from string, recipients []string, msgContent []byte) error {
 | 
				
			||||||
 | 
						client, err := smtp.Dial(hostAddressWithPort)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							return err
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						host, _, _ := net.SplitHostPort(hostAddressWithPort)
 | 
				
			||||||
 | 
						tlsConn := &tls.Config{
 | 
				
			||||||
 | 
							InsecureSkipVerify: true,
 | 
				
			||||||
 | 
							ServerName:         host,
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						if err = client.StartTLS(tlsConn); err != nil {
 | 
				
			||||||
 | 
							return err
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if auth != nil {
 | 
				
			||||||
 | 
							if err = client.Auth(auth); err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if err = client.Mail(from); err != nil {
 | 
				
			||||||
 | 
							return err
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						for _, rec := range recipients {
 | 
				
			||||||
 | 
							if err = client.Rcpt(rec); err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						w, err := client.Data()
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							return err
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						if _, err = w.Write([]byte(msgContent)); err != nil {
 | 
				
			||||||
 | 
							return err
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if err = w.Close(); err != nil {
 | 
				
			||||||
 | 
							return err
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return client.Quit()
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Direct Send mail message
 | 
					// Direct Send mail message
 | 
				
			||||||
func Send(msg *Message) (int, error) {
 | 
					func Send(msg *Message) (int, error) {
 | 
				
			||||||
	log.Trace("Sending mails to: %s", strings.Join(msg.To, "; "))
 | 
						log.Trace("Sending mails to: %s", strings.Join(msg.To, "; "))
 | 
				
			||||||
@@ -85,7 +134,7 @@ func Send(msg *Message) (int, error) {
 | 
				
			|||||||
		num := 0
 | 
							num := 0
 | 
				
			||||||
		for _, to := range msg.To {
 | 
							for _, to := range msg.To {
 | 
				
			||||||
			body := []byte("To: " + to + "\r\n" + content)
 | 
								body := []byte("To: " + to + "\r\n" + content)
 | 
				
			||||||
			err := smtp.SendMail(setting.MailService.Host, auth, msg.From, []string{to}, body)
 | 
								err := sendMail(setting.MailService.Host, auth, msg.From, []string{to}, body)
 | 
				
			||||||
			if err != nil {
 | 
								if err != nil {
 | 
				
			||||||
				return num, err
 | 
									return num, err
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
@@ -96,7 +145,7 @@ func Send(msg *Message) (int, error) {
 | 
				
			|||||||
		body := []byte("To: " + strings.Join(msg.To, ";") + "\r\n" + content)
 | 
							body := []byte("To: " + strings.Join(msg.To, ";") + "\r\n" + content)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// send to multiple emails in one message
 | 
							// send to multiple emails in one message
 | 
				
			||||||
		err := smtp.SendMail(setting.MailService.Host, auth, msg.From, msg.To, body)
 | 
							err := sendMail(setting.MailService.Host, auth, msg.From, msg.To, body)
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return 0, err
 | 
								return 0, err
 | 
				
			||||||
		} else {
 | 
							} else {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1 +1 @@
 | 
				
			|||||||
0.5.5.1008 Beta
 | 
					0.5.5.1009 Beta
 | 
				
			||||||
		Reference in New Issue
	
	Block a user