diff options
author | Reto Brunner <reto@labrat.space> | 2020-08-19 12:06:02 +0200 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-08-20 21:53:45 +0200 |
commit | 2a186cfd713e5ba5ae649f6794b58f1bd02393fc (patch) | |
tree | 633cbbd35062f712e3c4a708f6816b35cfbda0a1 /commands/msg/reply.go | |
parent | c84630714405a1e93766a6a6c023801302a3ea66 (diff) | |
download | aerc-2a186cfd713e5ba5ae649f6794b58f1bd02393fc.tar.gz |
msg/reply: handle addresses as addresses
This simplifies the code considerably and makes it easier to follow
Diffstat (limited to 'commands/msg/reply.go')
-rw-r--r-- | commands/msg/reply.go | 44 |
1 files changed, 20 insertions, 24 deletions
diff --git a/commands/msg/reply.go b/commands/msg/reply.go index 6fd6141..7181e1e 100644 --- a/commands/msg/reply.go +++ b/commands/msg/reply.go @@ -5,12 +5,12 @@ import ( "errors" "fmt" "io" - gomail "net/mail" "strings" "git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/aerc/lib" + "git.sr.ht/~sircmpwn/aerc/lib/format" "git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~sircmpwn/aerc/widgets" ) @@ -60,7 +60,10 @@ func (reply) Execute(aerc *widgets.Aerc, args []string) error { return errors.New("No account selected") } conf := acct.AccountConfig() - us, _ := gomail.ParseAddress(conf.From) + from, err := format.ParseAddress(conf.From) + if err != nil { + return err + } store := widget.Store() if store == nil { return errors.New("Cannot perform action. Messages still loading") @@ -72,27 +75,18 @@ func (reply) Execute(aerc *widgets.Aerc, args []string) error { acct.Logger().Println("Replying to email " + msg.Envelope.MessageId) var ( - to []string - cc []string - toList []*models.Address + to []*models.Address + cc []*models.Address ) if args[0] == "reply" { if len(msg.Envelope.ReplyTo) != 0 { - toList = msg.Envelope.ReplyTo + to = msg.Envelope.ReplyTo } else { - toList = msg.Envelope.From - } - for _, addr := range toList { - if addr.Name != "" { - to = append(to, fmt.Sprintf("%s <%s@%s>", - addr.Name, addr.Mailbox, addr.Host)) - } else { - to = append(to, fmt.Sprintf("<%s@%s>", addr.Mailbox, addr.Host)) - } + to = msg.Envelope.From } isMainRecipient := func(a *models.Address) bool { - for _, ta := range toList { - if ta.Mailbox == a.Mailbox && ta.Host == a.Host { + for _, ta := range to { + if ta.Address == a.Address { return true } } @@ -104,15 +98,16 @@ func (reply) Execute(aerc *widgets.Aerc, args []string) error { if isMainRecipient(addr) { continue } - cc = append(cc, addr.Format()) + cc = append(cc, addr) } + envTos := make([]*models.Address, 0, len(msg.Envelope.To)) for _, addr := range msg.Envelope.To { - address := fmt.Sprintf("%s@%s", addr.Mailbox, addr.Host) - if strings.EqualFold(address, us.Address) { + if addr.Address == from.Address { continue } - to = append(to, addr.Format()) + envTos = append(envTos, addr) } + to = append(to, envTos...) } } @@ -124,8 +119,9 @@ func (reply) Execute(aerc *widgets.Aerc, args []string) error { } defaults := map[string]string{ - "To": strings.Join(to, ", "), - "Cc": strings.Join(cc, ", "), + "To": format.FormatAddresses(to), + "Cc": format.FormatAddresses(cc), + "From": from.Format(), "Subject": subject, "In-Reply-To": msg.Envelope.MessageId, } @@ -133,7 +129,7 @@ func (reply) Execute(aerc *widgets.Aerc, args []string) error { addTab := func() error { if template != "" { - original.From = models.FormatAddresses(msg.Envelope.From) + original.From = format.FormatAddresses(msg.Envelope.From) original.Date = msg.Envelope.Date } |