func (mc *MailCon) waitFor(cmd *imap.Command, origErr error) (*imap.Command, error) { var ( // rsp *imap.Response wferr error ) // 1) Check if we're missing a command and if so, return with an error if cmd == nil { // Todo: origErr could be nil here as well wferr = errors.New(fmt.Sprintf("WaitFor: Missing command, because: %s", origErr.Error())) mc.logMC(wferr.Error(), imap.LogAll) return nil, wferr } else if origErr == nil { // The original command executed without an error -> start waiting for the result of the // given command (which is done by waiting for the OK response) if _, okErr := cmd.Result(imap.OK); okErr != nil { // 2) If the result is not OK, build an WaitFor error that contains the imap.OK error wferr = errors.New(fmt.Sprintf("WaitFor: Command %s finished, but failed to wait \n"+ "for the result with error: %s", cmd.Name(true), okErr.Error())) mc.logMC(wferr.Error(), imap.LogAll) return cmd, wferr } } else if origErr != nil { // There is an error for the original executed command return cmd, origErr } // All good, no errors return cmd, nil }
/** * Creates a new mail on the IMAP server with the given header information, flags and content * (body). * ATTENTION: DOES NOT LOCK THE IMAP CONNECTION! => Has to be wrapped into a mutex lock method */ func (mc *MailCon) createMailInFolder_internal(h *Header, f *Flags, content string) (uid uint32, err error) { var ( // Create the msg: // Header info + empty line + content + empty line msg string = strings.Join([]string{SerializeHeader(h), "", content, ""}, "\r\n") lit imap.Literal = imap.NewLiteral([]byte(msg)) mbox string = fmt.Sprintf("%s%s%s", mc.mailbox, mc.delim, h.Folder) cmd *imap.Command resp *imap.Response ) // 1) Execute the actual append mail command if cmd, err = mc.client.Append(mbox, imap.AsFlagSet(SerializeFlags(f)), &h.Date, lit); err != nil { return 0, err } if resp, err = cmd.Result(imap.OK); err != nil { return 0, fmt.Errorf("[watney] ERROR waiting for result of append command\n\t%s\n", err.Error()) } // 2) Process the server response and extract the message UID of the previously added mail // The Response is an 'APPENDUID' with the fields: // [0] APPENDUID:string | [1] internaldate:long64 | [2] UID:uint32 return imap.AsNumber(resp.Fields[2]), err }
func ReportOK(cmd *imap.Command, err error) *imap.Command { var rsp *imap.Response if cmd == nil { fmt.Printf("--- ??? ---\n%v\n\n", err) panic(err) } else if err == nil { rsp, err = cmd.Result(imap.OK) } if err != nil { fmt.Printf("--- %s ---\n%v\n\n", cmd.Name(true), err) panic(err) } c := cmd.Client() fmt.Printf("--- %s ---\n"+ "%d command response(s), %d unilateral response(s)\n"+ "%s %s\n\n", cmd.Name(true), len(cmd.Data), len(c.Data), rsp.Status, rsp.Info) c.Data = nil return cmd }
func (emaill *Email) getEmailContentUseIMAP(w rest.ResponseWriter, r *rest.Request) { addr := r.FormValue("imapAddr") port := r.FormValue("imapPort") user := r.FormValue("user") pwd := r.FormValue("pwd") id := r.FormValue("id") address := addr + ":" + port log.Printf("get email content use imap %s\n", address) var ( c *imap.Client cmd *imap.Command rsp *imap.Response ) // Connect to the server c, err := imap.Dial(addr) if err != nil { log.Printf("dial %s error\n", address) return } // Remember to log out and close the connection when finished defer c.Logout(30 * time.Second) // Print server greeting (first response in the unilateral server data queue) log.Printf("Server says hello:%s", c.Data[0].Info) c.Data = nil // Enable encryption, if supported by the server if c.Caps["STARTTLS"] { c.StartTLS(nil) } // Authenticate if c.State() == imap.Login { c.Login(user, pwd) } // List all top-level mailboxes, wait for the command to finish cmd, _ = imap.Wait(c.List("", "%")) // Print mailbox information log.Printf("\nTop-level mailboxes:") for _, rsp = range cmd.Data { log.Printf("|--%s", rsp.MailboxInfo()) } // Check for new unilateral server data responses for _, rsp = range c.Data { log.Printf("Server data:%s", rsp) } c.Data = nil // Open a mailbox (synchronous command - no need for imap.Wait) c.Select("INBOX", true) log.Printf("\nMailbox status:%s\n", c.Mailbox) if c.Mailbox == nil { resp := EmailJsonResponse{Success: true} w.WriteJson(&resp) return } // Fetch the headers of the 10 most recent messages set, _ := imap.NewSeqSet("") set.Add(id) // if c.Mailbox.Messages >= 10 { // set.AddRange(c.Mailbox.Messages-9, c.Mailbox.Messages) //测试只取最新一封邮件 // } else { // set.Add("1:*") // } cmd, _ = c.Fetch(set, "RFC822.HEADER", "RFC822.TEXT") //指定要获取的内容 // Process responses while the command is running log.Printf("\nget mail [%s] messages:", id) for cmd.InProgress() { // Wait for the next response (no timeout) c.Recv(-1) // Process command data for _, rsp = range cmd.Data { header := imap.AsBytes(rsp.MessageInfo().Attrs["RFC822.HEADER"]) if msg, _ := mail.ReadMessage(bytes.NewReader(header)); msg != nil { subject := msg.Header.Get("Subject") log.Printf("|--%s", subject) realSubject := GetRealSubject(subject) log.Printf("in rest_email.go: get real subject") log.Printf(realSubject) senderAddr := msg.Header.Get("From") recverAddrList := msg.Header.Get("To") realSenderAddr := GetRealSubject(senderAddr) realRecverAddrList := GetRealSubject(recverAddrList) body := imap.AsBytes(rsp.MessageInfo().Attrs["RFC822.TEXT"]) //log.Printf("email body: %s", body) //realBody := GetRealBody(string(body)) headerAndBody := make([]byte, len(header)+len(body)) copy(headerAndBody, header) copy(headerAndBody[len(header):], body) msg, _ := mail.ReadMessage(bytes.NewReader(headerAndBody)) mime, _ := enmime.ParseMIMEBody(msg) realBody := mime.Text //如果原始内容为html,会去掉html元素标签 log.Printf("real body: %s", realBody) //获取MIMEPart所有节点内容 // log.Printf("root ======================") // root := mime.Root // if root != nil { // log.Printf(string(root.Content())) // log.Printf("child==========") // if child := root.FirstChild(); child != nil { // log.Printf(string(child.Content())) // } // } attachments := mime.Attachments log.Printf("attachments len=%d", len(attachments)) count := len(attachments) var attachmentList []Attachment = nil var data EmailContent if count > 0 { attachmentList = make([]Attachment, count) for i := 0; i < len(attachments); i++ { name := attachments[i].FileName() content := attachments[i].Content() //todo encode by base64 log.Printf("name===%s", name) attachmentList[i] = Attachment{Name: name, Body: string(content)} } } data = EmailContent{Subject: realSubject, SenderAddr: realSenderAddr, RecverAddrList: realRecverAddrList, Content: realBody, Attachments: attachmentList} resp := EmailJsonResponse{Success: true, Data: data} w.WriteJson(resp) } } cmd.Data = nil // Process unilateral server data for _, rsp = range c.Data { log.Printf("Server data:%s", rsp) } c.Data = nil } // Check command completion status if rsp, err := cmd.Result(imap.OK); err != nil { if err == imap.ErrAborted { log.Printf("Fetch command aborted\n") } else { log.Printf("Fetch error:%s\n", rsp.Info) } } }
func main() { token := flag.String("token", "", "The Telegram bot token") to := flag.String("to", "", "The mail recipient") from := flag.String("from", "", "The mail sender") server := flag.String("server", "", "The mail server") port := flag.Int("port", 587, "The mail server port") user := flag.String("user", "", "") pass := flag.String("pass", "", "") subject := flag.String("subject", "", "") flag.Parse() bot, err := telebot.NewBot(*token) if err != nil { return } // Fetching Mails and send as Telegram messages var ( c *imap.Client cmd *imap.Command rsp *imap.Response ) c, _ = imap.Dial(*server) defer c.Logout(30 * time.Second) c.Data = nil if c.Caps["STARTTLS"] { c.StartTLS(nil) } if c.State() == imap.Login { c.Login(*user, *pass) } cmd, _ = imap.Wait(c.List("", "%")) c.Data = nil c.Select("INBOX", true) set, _ := imap.NewSeqSet("") set.Add("1:*") cmd, _ = c.Fetch(set, "RFC822.HEADER") for cmd.InProgress() { c.Recv(-1) for _, rsp = range cmd.Data { header := imap.AsBytes(rsp.MessageInfo().Attrs["RFC822.HEADER"]) if msg, _ := mail.ReadMessage(bytes.NewReader(header)); msg != nil { fmt.Println("|--", msg.Header.Get("FROM")) } } cmd.Data = nil c.Data = nil } if rsp, err := cmd.Result(imap.OK); err != nil { if err == imap.ErrAborted { fmt.Println("Fetch command aborted") } else { fmt.Println("Fetch error:", rsp.Info) } } /* * Listen to Telegram messages and send as mail */ messages := make(chan telebot.Message) bot.Listen(messages, 1*time.Second) for message := range messages { m := gomail.NewMessage() m.SetHeader("From", *from) m.SetHeader("To", *to) m.SetHeader("Subject", *subject) m.SetBody("text/html", message.Text) d := gomail.NewPlainDialer(*server, *port, *user, *pass) d.TLSConfig = &tls.Config{InsecureSkipVerify: true} if err := d.DialAndSend(m); err != nil { panic(err) } } }
// CheckNewMails Check if exist a new mail and post it func (m *MatterMail) CheckNewMails() error { m.debg.Println("CheckNewMails") if err := m.CheckImapConnection(); err != nil { return err } var ( cmd *imap.Command rsp *imap.Response ) // Open a mailbox (synchronous command - no need for imap.Wait) m.imapClient.Select("INBOX", false) var specs []imap.Field specs = append(specs, "UNSEEN") seq := &imap.SeqSet{} // get headers and UID for UnSeen message in src inbox... cmd, err := imap.Wait(m.imapClient.UIDSearch(specs...)) if err != nil { m.debg.Println("Error UIDSearch UTF-8:") m.debg.Println(err) m.debg.Println("Try with US-ASCII") // try again with US-ASCII cmd, err = imap.Wait(m.imapClient.Send("UID SEARCH", append([]imap.Field{"CHARSET", "US-ASCII"}, specs...)...)) if err != nil { m.eror.Println("UID SEARCH US-ASCII") return err } } for _, rsp := range cmd.Data { for _, uid := range rsp.SearchResults() { m.debg.Println("CheckNewMails:AddNum ", uid) seq.AddNum(uid) } } // no new messages if seq.Empty() { m.debg.Println("CheckNewMails: No new messages") return nil } cmd, _ = m.imapClient.UIDFetch(seq, "BODY[]") postmail := false for cmd.InProgress() { m.debg.Println("CheckNewMails: cmd in Progress") // Wait for the next response (no timeout) m.imapClient.Recv(-1) // Process command data for _, rsp = range cmd.Data { msgFields := rsp.MessageInfo().Attrs header := imap.AsBytes(msgFields["BODY[]"]) if msg, _ := mail.ReadMessage(bytes.NewReader(header)); msg != nil { m.debg.Println("CheckNewMails:PostMail") if err := m.PostMail(msg); err != nil { return err } postmail = true } } cmd.Data = nil } // Check command completion status if rsp, err := cmd.Result(imap.OK); err != nil { if err == imap.ErrAborted { m.eror.Println("Fetch command aborted") return err } m.eror.Println("Fetch error:", rsp.Info) return err } cmd.Data = nil if postmail { m.debg.Println("CheckNewMails: Mark all messages with flag \\Seen") //Mark all messages seen _, err = imap.Wait(m.imapClient.UIDStore(seq, "+FLAGS.SILENT", `\Seen`)) if err != nil { m.eror.Println("Error UIDStore \\Seen") return err } } return nil }
func ExampleClient() { // // Note: most of error handling code is omitted for brevity // var ( c *imap.Client cmd *imap.Command rsp *imap.Response ) // Connect to the server c, _ = imap.Dial("imap.example.com") // Remember to log out and close the connection when finished defer c.Logout(30 * time.Second) // Print server greeting (first response in the unilateral server data queue) fmt.Println("Server says hello:", c.Data[0].Info) c.Data = nil // Enable encryption, if supported by the server if c.Caps["STARTTLS"] { c.StartTLS(nil) } // Authenticate if c.State() == imap.Login { c.Login("*****@*****.**", "mysupersecretpassword") } // List all top-level mailboxes, wait for the command to finish cmd, _ = imap.Wait(c.List("", "%")) // Print mailbox information fmt.Println("\nTop-level mailboxes:") for _, rsp = range cmd.Data { fmt.Println("|--", rsp.MailboxInfo()) } // Check for new unilateral server data responses for _, rsp = range c.Data { fmt.Println("Server data:", rsp) } c.Data = nil // Open a mailbox (synchronous command - no need for imap.Wait) c.Select("INBOX", true) fmt.Print("\nMailbox status:\n", c.Mailbox) // Fetch the headers of the 10 most recent messages set, _ := imap.NewSeqSet("") if c.Mailbox.Messages >= 10 { set.AddRange(c.Mailbox.Messages-9, c.Mailbox.Messages) } else { set.Add("1:*") } cmd, _ = c.Fetch(set, "RFC822.HEADER") // Process responses while the command is running fmt.Println("\nMost recent messages:") for cmd.InProgress() { // Wait for the next response (no timeout) c.Recv(-1) // Process command data for _, rsp = range cmd.Data { header := imap.AsBytes(rsp.MessageInfo().Attrs["RFC822.HEADER"]) if msg, _ := mail.ReadMessage(bytes.NewReader(header)); msg != nil { fmt.Println("|--", msg.Header.Get("Subject")) } } cmd.Data = nil // Process unilateral server data for _, rsp = range c.Data { fmt.Println("Server data:", rsp) } c.Data = nil } // Check command completion status if rsp, err := cmd.Result(imap.OK); err != nil { if err == imap.ErrAborted { fmt.Println("Fetch command aborted") } else { fmt.Println("Fetch error:", rsp.Info) } } }