Just wondering if folks think it would be desirable to make the date
string in the build version configurable. I am not a big security
through obscurity fan, but I just find it messy looking to have the date
there.
I remove mine with the following:
--- sendlib.c.orig Tue Jul 18 11:16:24 2006
+++ sendlib.c Mon Aug 14 10:11:55 2006
@@ -1649,7 +1649,7 @@
if (mode == 0 && !privacy && option (OPTXMAILER) && !has_agent)
{
/* Add a vanity header */
- fprintf (fp, "User-Agent: Mutt/%s (%s)\n", MUTT_VERSION, ReleaseDate);
+ fprintf (fp, "User-Agent: Mutt/%s\n", MUTT_VERSION);
}
return (ferror (fp) == 0 ? 0 : -1);
but I wonder if it could just be a configure flag.
w