From 58a4fd932f40cd77dbcbdc0bfd11710e0ccb5f35 Mon Sep 17 00:00:00 2001 From: pdmef Date: Sun, 24 Jul 2005 09:43:26 +0000 Subject: [PATCH] Rocco Rutte: - fix User-Agent: header to conform to common practice syntax (again) git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@336 e385b8ad-14ed-0310-8656-cc95a2468c6d --- sendlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sendlib.c b/sendlib.c index 2707257..c9c5874 100644 --- a/sendlib.c +++ b/sendlib.c @@ -1683,7 +1683,7 @@ int mutt_write_rfc822_header (FILE * fp, ENVELOPE * env, BODY * attach, } } /* Add a vanity header */ - fprintf (fp, "User-Agent: mutt-ng %s (%s)\n", MUTT_VERSION, os); + fprintf (fp, "User-Agent: mutt-ng/%s (%s)\n", MUTT_VERSION, os); } return (ferror (fp) == 0 ? 0 : -1); -- 2.20.1