changeset 557:d7d25f7c5463

Fix default subject in administrative mails
author mortenp
date Sat, 02 Sep 2006 21:54:40 +1000
parents 262ea6fb0a7a
children 4b62d33f337c
files ChangeLog src/prepstdreply.c
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Aug 31 08:04:54 2006 +1000
+++ b/ChangeLog	Sat Sep 02 21:54:40 2006 +1000
@@ -1,3 +1,4 @@
+ o Fix default subject in administrative mails
  o Add French listtexts (Christophe Gallienne)
  o Add search and pagination functionality to the perl-admin web interface
  o Only add To: header when sending out actual list mail
--- a/src/prepstdreply.c	Thu Aug 31 08:04:54 2006 +1000
+++ b/src/prepstdreply.c	Sat Sep 02 21:54:40 2006 +1000
@@ -174,7 +174,7 @@
 	if(strncasecmp(tmp, "Subject:", 8) != 0) {
 		log_error(LOG_ARGS, "No Subject in listtexts. Using "
 				"standard subject");
-		subject = mystrdup("mlmmj administrativa\n");
+		subject = mystrdup("Subject: mlmmj administrativa\n");
 	} else
 		subject = substitute(tmp, listaddr, listdelim, tokencount,
 				     data);