2019-06-02 07:15:04 +02:00
|
|
|
package msg
|
2019-05-16 18:15:34 +02:00
|
|
|
|
|
|
|
import (
|
2019-11-03 13:51:14 +01:00
|
|
|
"bytes"
|
2019-05-16 18:15:34 +02:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2019-05-16 18:39:22 +02:00
|
|
|
"io"
|
2022-02-28 18:02:28 +01:00
|
|
|
"regexp"
|
2019-05-16 18:15:34 +02:00
|
|
|
"strings"
|
|
|
|
|
2019-05-18 21:34:16 +02:00
|
|
|
"git.sr.ht/~sircmpwn/getopt"
|
2019-05-16 18:15:34 +02:00
|
|
|
|
2021-11-05 10:19:46 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/lib"
|
2022-08-31 02:25:31 +02:00
|
|
|
"git.sr.ht/~rjarry/aerc/lib/crypto"
|
2021-11-05 10:19:46 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/lib/format"
|
2022-10-07 18:00:31 +02:00
|
|
|
"git.sr.ht/~rjarry/aerc/lib/ui"
|
2022-07-29 22:31:54 +02:00
|
|
|
"git.sr.ht/~rjarry/aerc/logging"
|
2021-11-05 10:19:46 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/models"
|
|
|
|
"git.sr.ht/~rjarry/aerc/widgets"
|
2020-11-10 19:57:09 +01:00
|
|
|
"github.com/emersion/go-message/mail"
|
2019-05-16 18:15:34 +02:00
|
|
|
)
|
|
|
|
|
2019-06-27 19:33:11 +02:00
|
|
|
type reply struct{}
|
|
|
|
|
2019-05-16 18:15:34 +02:00
|
|
|
func init() {
|
2019-06-27 19:33:11 +02:00
|
|
|
register(reply{})
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (reply) Aliases() []string {
|
2019-08-18 11:33:13 +02:00
|
|
|
return []string{"reply"}
|
2019-06-27 19:33:11 +02:00
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (reply) Complete(aerc *widgets.Aerc, args []string) []string {
|
2019-06-27 19:33:11 +02:00
|
|
|
return nil
|
2019-05-16 18:15:34 +02:00
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (reply) Execute(aerc *widgets.Aerc, args []string) error {
|
2019-11-03 13:51:14 +01:00
|
|
|
opts, optind, err := getopt.Getopts(args, "aqT:")
|
2019-05-16 18:39:22 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-06-08 20:57:56 +02:00
|
|
|
if optind != len(args) {
|
2019-11-03 13:51:14 +01:00
|
|
|
return errors.New("Usage: reply [-aq -T <template>]")
|
2019-05-16 18:15:34 +02:00
|
|
|
}
|
2019-05-16 18:39:22 +02:00
|
|
|
var (
|
|
|
|
quote bool
|
|
|
|
replyAll bool
|
2019-11-03 13:51:14 +01:00
|
|
|
template string
|
2019-05-16 18:39:22 +02:00
|
|
|
)
|
|
|
|
for _, opt := range opts {
|
|
|
|
switch opt.Option {
|
|
|
|
case 'a':
|
|
|
|
replyAll = true
|
|
|
|
case 'q':
|
|
|
|
quote = true
|
2019-11-03 13:51:14 +01:00
|
|
|
case 'T':
|
|
|
|
template = opt.Value
|
2019-05-16 18:39:22 +02:00
|
|
|
}
|
|
|
|
}
|
2019-05-16 18:15:34 +02:00
|
|
|
|
2022-07-18 12:54:55 +02:00
|
|
|
widget := aerc.SelectedTabContent().(widgets.ProvidesMessage)
|
2019-06-02 07:15:04 +02:00
|
|
|
acct := widget.SelectedAccount()
|
2019-11-03 13:51:14 +01:00
|
|
|
|
2019-06-02 07:15:04 +02:00
|
|
|
if acct == nil {
|
|
|
|
return errors.New("No account selected")
|
|
|
|
}
|
2019-05-16 20:16:45 +02:00
|
|
|
conf := acct.AccountConfig()
|
2020-11-10 20:35:47 +01:00
|
|
|
from, err := mail.ParseAddress(conf.From)
|
2020-08-19 12:06:02 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-11-10 20:35:47 +01:00
|
|
|
var aliases []*mail.Address
|
|
|
|
if conf.Aliases != "" {
|
|
|
|
aliases, err = mail.ParseAddressList(conf.Aliases)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-08-20 19:22:50 +02:00
|
|
|
}
|
2020-08-26 08:13:38 +02:00
|
|
|
|
2019-06-02 07:15:04 +02:00
|
|
|
store := widget.Store()
|
2019-07-14 09:42:24 +02:00
|
|
|
if store == nil {
|
|
|
|
return errors.New("Cannot perform action. Messages still loading")
|
|
|
|
}
|
2019-07-10 02:04:21 +02:00
|
|
|
msg, err := widget.SelectedMessage()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-05-16 18:15:34 +02:00
|
|
|
|
2020-08-26 08:13:38 +02:00
|
|
|
// figure out the sending from address if we have aliases
|
|
|
|
if len(aliases) != 0 {
|
|
|
|
rec := newAddrSet()
|
|
|
|
rec.AddList(msg.Envelope.To)
|
|
|
|
rec.AddList(msg.Envelope.Cc)
|
|
|
|
// test the from first, it has priority over any present alias
|
|
|
|
if rec.Contains(from) {
|
|
|
|
// do nothing
|
|
|
|
} else {
|
|
|
|
for _, a := range aliases {
|
|
|
|
if rec.Contains(a) {
|
|
|
|
from = a
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-16 18:15:34 +02:00
|
|
|
var (
|
2020-11-10 19:57:09 +01:00
|
|
|
to []*mail.Address
|
|
|
|
cc []*mail.Address
|
2019-05-16 18:15:34 +02:00
|
|
|
)
|
2020-08-20 19:22:50 +02:00
|
|
|
|
2020-08-26 08:13:38 +02:00
|
|
|
recSet := newAddrSet() // used for de-duping
|
2020-08-20 19:22:50 +02:00
|
|
|
|
2020-08-26 08:13:38 +02:00
|
|
|
if len(msg.Envelope.ReplyTo) != 0 {
|
|
|
|
to = msg.Envelope.ReplyTo
|
|
|
|
} else {
|
|
|
|
to = msg.Envelope.From
|
|
|
|
}
|
2022-01-31 15:28:58 +01:00
|
|
|
|
|
|
|
if !aerc.Config().Compose.ReplyToSelf {
|
|
|
|
for i, v := range to {
|
|
|
|
if v.Address == from.Address {
|
|
|
|
to = append(to[:i], to[i+1:]...)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(to) == 0 {
|
2022-03-09 22:48:00 +01:00
|
|
|
to = msg.Envelope.To
|
2022-01-31 15:28:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-26 08:13:38 +02:00
|
|
|
recSet.AddList(to)
|
2020-08-20 19:22:50 +02:00
|
|
|
|
2020-08-26 08:13:38 +02:00
|
|
|
if replyAll {
|
|
|
|
// order matters, due to the deduping
|
|
|
|
// in order of importance, first parse the To, then the Cc header
|
|
|
|
|
|
|
|
// we add our from address, so that we don't self address ourselves
|
|
|
|
recSet.Add(from)
|
|
|
|
|
2020-11-10 19:57:09 +01:00
|
|
|
envTos := make([]*mail.Address, 0, len(msg.Envelope.To))
|
2020-08-26 08:13:38 +02:00
|
|
|
for _, addr := range msg.Envelope.To {
|
|
|
|
if recSet.Contains(addr) {
|
|
|
|
continue
|
2020-05-04 19:17:23 +02:00
|
|
|
}
|
2020-08-26 08:13:38 +02:00
|
|
|
envTos = append(envTos, addr)
|
2020-05-04 19:17:23 +02:00
|
|
|
}
|
2020-08-26 08:13:38 +02:00
|
|
|
recSet.AddList(envTos)
|
|
|
|
to = append(to, envTos...)
|
|
|
|
|
|
|
|
for _, addr := range msg.Envelope.Cc {
|
2022-07-31 22:16:40 +02:00
|
|
|
// dedupe stuff from the to/from headers
|
2020-08-26 08:13:38 +02:00
|
|
|
if recSet.Contains(addr) {
|
|
|
|
continue
|
2019-05-16 20:16:45 +02:00
|
|
|
}
|
2020-08-26 08:13:38 +02:00
|
|
|
cc = append(cc, addr)
|
2019-05-16 20:16:45 +02:00
|
|
|
}
|
2020-08-26 08:13:38 +02:00
|
|
|
recSet.AddList(cc)
|
2019-05-16 18:15:34 +02:00
|
|
|
}
|
|
|
|
|
2022-02-28 18:02:28 +01:00
|
|
|
subject := "Re: " + trimLocalizedRe(msg.Envelope.Subject)
|
2019-05-16 18:15:34 +02:00
|
|
|
|
2020-11-10 20:27:30 +01:00
|
|
|
h := &mail.Header{}
|
|
|
|
h.SetAddressList("to", to)
|
|
|
|
h.SetAddressList("cc", cc)
|
|
|
|
h.SetAddressList("from", []*mail.Address{from})
|
|
|
|
h.SetSubject(subject)
|
|
|
|
h.SetMsgIDList("in-reply-to", []string{msg.Envelope.MessageId})
|
2020-11-08 16:15:26 +01:00
|
|
|
err = setReferencesHeader(h, msg.RFC822Headers)
|
|
|
|
if err != nil {
|
|
|
|
aerc.PushError(fmt.Sprintf("could not set references: %v", err))
|
|
|
|
}
|
2020-11-03 07:39:36 +01:00
|
|
|
original := models.OriginalMail{
|
2020-11-10 20:27:30 +01:00
|
|
|
From: format.FormatAddresses(msg.Envelope.From),
|
|
|
|
Date: msg.Envelope.Date,
|
2020-11-03 07:39:36 +01:00
|
|
|
RFC822Headers: msg.RFC822Headers,
|
|
|
|
}
|
2019-07-23 01:29:07 +02:00
|
|
|
|
2019-11-03 13:51:14 +01:00
|
|
|
addTab := func() error {
|
2020-04-24 11:42:21 +02:00
|
|
|
composer, err := widgets.NewComposer(aerc, acct, aerc.Config(),
|
2020-11-10 20:27:30 +01:00
|
|
|
acct.AccountConfig(), acct.Worker(), template, h, original)
|
2019-11-03 13:51:14 +01:00
|
|
|
if err != nil {
|
2020-05-28 16:32:42 +02:00
|
|
|
aerc.PushError("Error: " + err.Error())
|
2019-11-03 13:51:14 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if args[0] == "reply" {
|
|
|
|
composer.FocusTerminal()
|
|
|
|
}
|
2019-05-16 18:15:34 +02:00
|
|
|
|
2019-05-16 18:39:22 +02:00
|
|
|
tab := aerc.NewTab(composer, subject)
|
2019-07-23 01:29:07 +02:00
|
|
|
composer.OnHeaderChange("Subject", func(subject string) {
|
2019-05-16 18:39:22 +02:00
|
|
|
if subject == "" {
|
|
|
|
tab.Name = "New email"
|
|
|
|
} else {
|
|
|
|
tab.Name = subject
|
|
|
|
}
|
2022-10-07 18:00:31 +02:00
|
|
|
ui.Invalidate()
|
2019-05-16 18:39:22 +02:00
|
|
|
})
|
2019-11-03 13:51:14 +01:00
|
|
|
|
2020-05-25 16:59:48 +02:00
|
|
|
composer.OnClose(func(c *widgets.Composer) {
|
2020-09-21 20:43:22 +02:00
|
|
|
if c.Sent() {
|
|
|
|
store.Answered([]uint32{msg.Uid}, true, nil)
|
|
|
|
}
|
2020-05-25 16:59:48 +02:00
|
|
|
})
|
|
|
|
|
2019-11-03 13:51:14 +01:00
|
|
|
return nil
|
2019-05-16 18:39:22 +02:00
|
|
|
}
|
2019-05-16 18:15:34 +02:00
|
|
|
|
2019-08-18 11:33:13 +02:00
|
|
|
if quote {
|
2019-11-03 13:51:14 +01:00
|
|
|
if template == "" {
|
|
|
|
template = aerc.Config().Templates.QuotedReply
|
2019-08-18 11:33:13 +02:00
|
|
|
}
|
|
|
|
|
2022-08-31 02:25:31 +02:00
|
|
|
if crypto.IsEncrypted(msg.BodyStructure) {
|
|
|
|
provider := aerc.SelectedTabContent().(widgets.ProvidesMessage)
|
|
|
|
mv, ok := provider.(*widgets.MessageViewer)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("message is encrypted. can only quote reply while message is open")
|
|
|
|
}
|
|
|
|
p := provider.SelectedMessagePart()
|
|
|
|
if p == nil {
|
|
|
|
return fmt.Errorf("could not fetch message part")
|
|
|
|
}
|
|
|
|
mv.MessageView().FetchBodyPart(p.Index, func(reader io.Reader) {
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
_, err := buf.ReadFrom(reader)
|
|
|
|
if err != nil {
|
|
|
|
logging.Warnf("failed to fetch bodypart: %v", err)
|
|
|
|
}
|
|
|
|
original.Text = buf.String()
|
|
|
|
err = addTab()
|
|
|
|
if err != nil {
|
|
|
|
logging.Warnf("failed to add tab: %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-19 17:58:08 +02:00
|
|
|
part := lib.FindPlaintext(msg.BodyStructure, nil)
|
2020-05-17 12:08:17 +02:00
|
|
|
if part == nil {
|
2020-06-19 17:58:08 +02:00
|
|
|
// mkey... let's get the first thing that isn't a container
|
|
|
|
// if that's still nil it's either not a multipart msg (ok) or
|
|
|
|
// broken (containers only)
|
|
|
|
part = lib.FindFirstNonMultipart(msg.BodyStructure, nil)
|
2020-05-17 12:08:17 +02:00
|
|
|
}
|
2021-02-26 22:08:49 +01:00
|
|
|
|
|
|
|
err = addMimeType(msg, part, &original)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-05-17 12:08:17 +02:00
|
|
|
store.FetchBodyPart(msg.Uid, part, func(reader io.Reader) {
|
2019-11-03 13:51:14 +01:00
|
|
|
buf := new(bytes.Buffer)
|
2022-07-29 22:31:54 +02:00
|
|
|
_, err := buf.ReadFrom(reader)
|
|
|
|
if err != nil {
|
|
|
|
logging.Warnf("failed to fetch bodypart: %v", err)
|
|
|
|
}
|
2020-01-08 21:44:14 +01:00
|
|
|
original.Text = buf.String()
|
2022-07-29 22:31:54 +02:00
|
|
|
err = addTab()
|
|
|
|
if err != nil {
|
|
|
|
logging.Warnf("failed to add tab: %v", err)
|
|
|
|
}
|
2019-05-16 18:39:22 +02:00
|
|
|
})
|
2019-11-03 13:51:14 +01:00
|
|
|
return nil
|
2019-05-16 18:39:22 +02:00
|
|
|
} else {
|
2022-01-27 09:16:54 +01:00
|
|
|
if template == "" {
|
|
|
|
template = aerc.Config().Templates.NewMessage
|
|
|
|
}
|
2019-11-03 13:51:14 +01:00
|
|
|
return addTab()
|
2019-05-16 18:39:22 +02:00
|
|
|
}
|
2019-05-16 18:15:34 +02:00
|
|
|
}
|
2020-08-26 08:13:38 +02:00
|
|
|
|
|
|
|
type addrSet map[string]struct{}
|
|
|
|
|
|
|
|
func newAddrSet() addrSet {
|
|
|
|
s := make(map[string]struct{})
|
|
|
|
return addrSet(s)
|
|
|
|
}
|
|
|
|
|
2020-11-10 19:57:09 +01:00
|
|
|
func (s addrSet) Add(a *mail.Address) {
|
2020-08-26 08:13:38 +02:00
|
|
|
s[a.Address] = struct{}{}
|
|
|
|
}
|
|
|
|
|
2020-11-10 19:57:09 +01:00
|
|
|
func (s addrSet) AddList(al []*mail.Address) {
|
2020-08-26 08:13:38 +02:00
|
|
|
for _, a := range al {
|
|
|
|
s[a.Address] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-10 19:57:09 +01:00
|
|
|
func (s addrSet) Contains(a *mail.Address) bool {
|
2020-08-26 08:13:38 +02:00
|
|
|
_, ok := s[a.Address]
|
|
|
|
return ok
|
|
|
|
}
|
2020-11-08 16:15:26 +01:00
|
|
|
|
2022-07-31 22:16:40 +02:00
|
|
|
// setReferencesHeader adds the references header to target based on parent
|
|
|
|
// according to RFC2822
|
2020-11-08 16:15:26 +01:00
|
|
|
func setReferencesHeader(target, parent *mail.Header) error {
|
|
|
|
refs, err := parent.MsgIDList("references")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(refs) == 0 {
|
|
|
|
// according to the RFC we need to fall back to in-reply-to only if
|
|
|
|
// References is not set
|
|
|
|
refs, err = parent.MsgIDList("in-reply-to")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
msgID, err := parent.MessageID()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
refs = append(refs, msgID)
|
|
|
|
target.SetMsgIDList("references", refs)
|
|
|
|
return nil
|
|
|
|
}
|
2021-02-26 22:08:49 +01:00
|
|
|
|
|
|
|
// addMimeType adds the proper mime type of the part to the originalMail struct
|
|
|
|
func addMimeType(msg *models.MessageInfo, part []int,
|
2022-07-31 22:16:40 +02:00
|
|
|
orig *models.OriginalMail,
|
|
|
|
) error {
|
2021-02-26 22:08:49 +01:00
|
|
|
// caution, :forward uses the code as well, keep that in mind when modifying
|
|
|
|
bs, err := msg.BodyStructure.PartAtIndex(part)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-10-12 23:52:45 +02:00
|
|
|
orig.MIMEType = bs.FullMIMEType()
|
2021-02-26 22:08:49 +01:00
|
|
|
return nil
|
|
|
|
}
|
2022-02-28 18:02:28 +01:00
|
|
|
|
|
|
|
// trimLocalizedRe removes known localizations of Re: commonly used by Outlook.
|
|
|
|
func trimLocalizedRe(subject string) string {
|
|
|
|
return strings.TrimPrefix(subject, localizedRe.FindString(subject))
|
|
|
|
}
|
|
|
|
|
|
|
|
// localizedRe contains a list of known translations for the common Re:
|
|
|
|
var localizedRe = regexp.MustCompile(`(?i)^((AW|RE|SV|VS|ODP|R): ?)+`)
|