perky       03/12/21 22:56:38

  Modified:    .        checkoutlist
  Log:
  Does kldp run Debian cvs? :)
  
  Revision  Changes    Path
  1.3       +1 -0      CVSROOT/checkoutlist
  
  Index: checkoutlist
  ===================================================================
  RCS file: /cvsroot/saenaru/CVSROOT/checkoutlist,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- checkoutlist	21 Dec 2003 13:54:34 -0000	1.2
  +++ checkoutlist	21 Dec 2003 13:56:38 -0000	1.3
  @@ -12,3 +12,4 @@
   #
   # comment lines begin with '#'
   log_accum.pl file not found
  +options file not found
  
  
  


perky       03/12/21 22:57:06

  Added:       .        options
  Log:
  Add it really
  
  Revision  Changes    Path
  1.1                  CVSROOT/options
  
  Index: options
  ===================================================================
  tag=Saenaru=CVSHeader
  tagexpand=iSaenaru
  
  
  


perky       03/12/21 23:30:43

  Modified:    .        log_accum.pl
  Log:
  Just test!
  
  Revision  Changes    Path
  1.2       +2 -1      CVSROOT/log_accum.pl
  
  Index: log_accum.pl
  ===================================================================
  RCS file: /cvsroot/saenaru/CVSROOT/log_accum.pl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- log_accum.pl	21 Dec 2003 13:54:34 -0000	1.1
  +++ log_accum.pl	21 Dec 2003 14:30:43 -0000	1.2
  @@ -12,7 +12,8 @@
   # Roy Fielding removed useless code and added log/mail of new files
   # Ken Coar added special processing (i.e., no diffs) for binary files
   #
  -# $Id: log_accum.pl,v 1.1 2003/11/16 04:46:30 perky Exp $
  +# $Id: log_accum.pl,v 1.1 2003/12/21 13:54:34 perky Exp $
  +# $Saenaru: CVSROOT/log_accum.pl,v 1.2 2003/12/21 14:30:43 perky Exp $
   
   ############################################################
   #
  
  
  


wkpark      06/10/24 15:44:40

  Modified:    .        checkoutlist log_accum.pl
  Log:
  try to fix commit log problem.
  
  Revision  Changes    Path
  1.4       +1 -1      CVSROOT/checkoutlist
  
  Index: checkoutlist
  ===================================================================
  RCS file: /cvsroot/saenaru/CVSROOT/checkoutlist,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- checkoutlist	21 Dec 2003 13:56:38 -0000	1.3
  +++ checkoutlist	24 Oct 2006 06:44:40 -0000	1.4
  @@ -12,4 +12,4 @@
   #
   # comment lines begin with '#'
   log_accum.pl file not found
  -options file not found
  +#options file not found
  
  
  
  1.3       +8 -2      CVSROOT/log_accum.pl
  
  Index: log_accum.pl
  ===================================================================
  RCS file: /cvsroot/saenaru/CVSROOT/log_accum.pl,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- log_accum.pl	21 Dec 2003 14:30:43 -0000	1.2
  +++ log_accum.pl	24 Oct 2006 06:44:40 -0000	1.3
  @@ -13,7 +13,7 @@
   # Ken Coar added special processing (i.e., no diffs) for binary files
   #
   # $Id: log_accum.pl,v 1.1 2003/12/21 13:54:34 perky Exp $
  -# $Saenaru: CVSROOT/log_accum.pl,v 1.2 2003/12/21 14:30:43 perky Exp $
  +# $Saenaru: CVSROOT/log_accum.pl,v 1.3 2006/10/24 06:44:40 wkpark Exp $
   
   ############################################################
   #
  @@ -53,6 +53,8 @@
   $CVSROOT       = $ENV{'CVSROOT'};
   
   $MAIL_TO       = 'saenaru-checkins@lists.kldp.net';
  +$DOMAIN	       = 'users.kldp.net';
  +$CHARSET       = 'UTF-8';
   #$MLISTHOST     = 'lists.sourceforge.net';
   
   ############################################################
  @@ -299,11 +301,15 @@
   
       open(MAIL, "| /usr/sbin/sendmail $MAIL_TO");
   
  +    print(MAIL "From: $login <$login\@$DOMAIN>\n");
  +    print(MAIL "To: SAENARU Mailing List <$MAIL_TO>\n");
  +
       $subject = "Subject: $ARGV[0]";
       if ($subject ne "") {
   	print(MAIL $subject, "\n");
       }
  -    print(MAIL "To: SAENARU Mailing List <$MAIL_TO>\n");
  +    print(MAIL "Content-Type: text/plain; charset=$CHARSET\n");
  +    print(MAIL "Content-Transfer-Encoding: 8bit\n");
       print(MAIL "\n");
       print(MAIL join("\n", @text));
   
  
  
  


wkpark      06/10/24 20:18:24

  Modified:    .        log_accum.pl
  Log:
  try to fix commit log problem.
  
  Revision  Changes    Path
  1.4       +2 -2      CVSROOT/log_accum.pl
  
  Index: log_accum.pl
  ===================================================================
  RCS file: /cvsroot/saenaru/CVSROOT/log_accum.pl,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- log_accum.pl	24 Oct 2006 06:44:40 -0000	1.3
  +++ log_accum.pl	24 Oct 2006 11:18:24 -0000	1.4
  @@ -13,7 +13,7 @@
   # Ken Coar added special processing (i.e., no diffs) for binary files
   #
   # $Id: log_accum.pl,v 1.1 2003/12/21 13:54:34 perky Exp $
  -# $Saenaru: CVSROOT/log_accum.pl,v 1.3 2006/10/24 06:44:40 wkpark Exp $
  +# $Saenaru: CVSROOT/log_accum.pl,v 1.4 2006/10/24 11:18:24 wkpark Exp $
   
   ############################################################
   #
  @@ -53,7 +53,7 @@
   $CVSROOT       = $ENV{'CVSROOT'};
   
   $MAIL_TO       = 'saenaru-checkins@lists.kldp.net';
  -$DOMAIN	       = 'users.kldp.net';
  +$DOMAIN	       = 'kldp.net';
   $CHARSET       = 'UTF-8';
   #$MLISTHOST     = 'lists.sourceforge.net';
   
  
  
  


