On Sun, Jan 09, 2000 at 23:10:31 -0800, Troy Davis wrote: > Is it possible for $realname to take precedence over $reverse_name > (essentially turning $reverse_name into just "reverse_email")? > > Occasionally I receive emails to: "Troy Davis (e-mail)" <[EMAIL PROTECTED]> > or others where responding with that name would be strange. I'm using > 1.1.1i. > > Suggestions appreciated, You could try this patch. -- Byrial
--- send.c~ Sun Jan 9 08:24:22 2000 +++ send.c Mon Jan 10 09:31:50 2000 @@ -826,8 +826,9 @@ static ADDRESS *set_reverse_name (ENVELO if (tmp) { tmp = rfc822_cpy_adr_real (tmp); - if (!tmp->personal) - tmp->personal = safe_strdup (Realname); + if (tmp->personal) + free (tmp->personal); + tmp->personal = safe_strdup (Realname); } return (tmp); }