aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReto Brunner <reto@labrat.space>2020-02-16 21:14:11 +0100
committerReto Brunner <reto@labrat.space>2020-02-16 21:16:49 +0100
commit37fc4d9423151e8ca708c81ec79317b4da835a70 (patch)
treeaff55920121ab0b79fe9bb593d746f3056f4e5ef
parent78dd043057af9ccf82d1d7ea1f316f2d55b769c2 (diff)
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
-rw-r--r--commands/msg/reply.go2
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())