]> granicus.if.org Git - mutt/commitdiff
Change bounce to use mutt_parse_adrlist() for address parsing.
authorKevin McCarthy <kevin@8t8.us>
Sat, 3 Jan 2015 19:33:10 +0000 (11:33 -0800)
committerKevin McCarthy <kevin@8t8.us>
Sat, 3 Jan 2015 19:33:10 +0000 (11:33 -0800)
When prompting for recipients, forwarding, replying, and mailing all use
mutt_parse_adrlist() to parse the addresses.  This allows for addresses
to be separated by spaces.

Bounce message currently uses rfc822_parse_adrlist(), which doesn't
allow the spaces.  This one-line patch simply changes bounce to behave
the same as mail, reply, and forwarding for the address prompt.

Thanks to Roger Cornelius for the patch!

commands.c

index 6b23e396c6562333dc6d5c6413fc953adb7b8910..8fc7d7e294e53d2a165083c3044370f8f965e8ab 100644 (file)
@@ -286,7 +286,7 @@ void ci_bounce_message (HEADER *h, int *redraw)
   if (rc || !buf[0])
     return;
 
-  if (!(adr = rfc822_parse_adrlist (adr, buf)))
+  if (!(adr = mutt_parse_adrlist (adr, buf)))
   {
     mutt_error _("Error parsing address!");
     return;