diff --git a/commands/msg/reply.go b/commands/msg/reply.go index 813a66e..7c40e97 100644 --- a/commands/msg/reply.go +++ b/commands/msg/reply.go @@ -103,7 +103,7 @@ func (reply) Execute(aerc *widgets.Aerc, args []string) error { } var subject string - if !strings.HasPrefix(msg.Envelope.Subject, "Re: ") { + if !strings.HasPrefix(strings.ToLower(msg.Envelope.Subject), "re: ") { subject = "Re: " + msg.Envelope.Subject } else { subject = msg.Envelope.Subject