diff options
author | Reto Brunner <reto@labrat.space> | 2020-02-16 21:14:11 +0100 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-02-16 21:16:49 +0100 |
commit | 37fc4d9423151e8ca708c81ec79317b4da835a70 (patch) | |
tree | aff55920121ab0b79fe9bb593d746f3056f4e5ef /commands/msg/reply.go | |
parent | 78dd043057af9ccf82d1d7ea1f316f2d55b769c2 (diff) | |
download | aerc-37fc4d9423151e8ca708c81ec79317b4da835a70.tar.gz |
msg/reply: fix address comparison
Compare self address in lowercase, to avoid self-replying when people put in uppercase versions of the mail. Reported-By: helby on Freenode
Diffstat (limited to 'commands/msg/reply.go')
-rw-r--r-- | commands/msg/reply.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/msg/reply.go b/commands/msg/reply.go index 3c69e27..4357874 100644 --- a/commands/msg/reply.go +++ b/commands/msg/reply.go @@ -95,7 +95,7 @@ func (reply) Execute(aerc *widgets.Aerc, args []string) error { } for _, addr := range msg.Envelope.To { address := fmt.Sprintf("%s@%s", addr.Mailbox, addr.Host) - if address == us.Address { + if strings.ToLower(address) == strings.ToLower(us.Address) { continue } to = append(to, addr.Format()) |