|   Created Codestriker topic at:
  http://codestriker.sourceforge.net/cgi-bin/codestriker.pl?topic=3549245&action=view&brmode=1&fview=-1
  User: sits    
  Date: 04/11/03 14:05:44
  Modified:    bin      log_accum.pl
  Log:
  The email field for the new topic should use $MAIL_FROM, not $user,
  since $MAIL_FROM will be a full email address.
  
  
  
  Index: log_accum.pl
  ===================================================================
  RCS file: /cvsroot/codestriker/codestriker/bin/log_accum.pl,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- log_accum.pl	12 Oct 2004 10:13:38 -0000	1.5
  +++ log_accum.pl	3 Nov 2004 22:05:43 -0000	1.6
  @@ -346,7 +346,7 @@
   	project_name => $CODESTRIKER_PROJECT,
   	repository => $CODESTRIKER_REPOSITORY,
   	bug_ids => join(", ", @bugs),
  -	email => $user,
  +	email => $MAIL_FROM,
   	reviewers => $CODESTRIKER_REVIEWERS,
   	cc => $CODESTRIKER_CC,
   	topic_text => join("\n", @diff)
  
  
  
 |