/[clipping]/mimex
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /mimex

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by dpavlin, Mon Jul 16 09:57:03 2001 UTC revision 1.5 by dpavlin, Sat Nov 3 11:02:30 2001 UTC
# Line 8  use Digest::MD5 qw(md5_hex); Line 8  use Digest::MD5 qw(md5_hex);
8    
9  use MIME::Parser;  use MIME::Parser;
10    
11  my $outdir = "/tmp/store";  my $outdir = "/data/store";
12  my $msgdir = "/tmp/mime$$";     # temp  my $msgdir = "/data/store/tmp/mime$$";  # temp
13  my $to = "dpavlin@pliva.hr";  my $from = 'clipping-info@pliva.hr';
14    my $to = 'clipdir@pliva.hr';
15    my $log = "/data/store/mimex.log";
16    
17  print "From: Press Clipping <pcst\@pliva.hr>\nSubject: Press Clipping update\n\n";  open(LOG,">> $log") || warn "log $log: $!";
18    
19    open(MAIL,"| /usr/sbin/sendmail $to") || die "sendmail: $!";
20    
21    print MAIL "From: Press Clipping <$from>\nSubject: Press Clipping update\n\n";
22    
23  #------------------------------------------------------------  #------------------------------------------------------------
24  # dump_entity - dump an entity's file info  # dump_entity - dump an entity's file info
# Line 21  sub dump_entity { Line 27  sub dump_entity {
27      my $ent = shift;      my $ent = shift;
28      my @parts = $ent->parts;      my @parts = $ent->parts;
29    
30        my $md5=md5_hex(time());
31        mkdir "$outdir/$md5",0755 || die "mkdir $outdir/$md5: $!";
32    
33      if (@parts) {       # multipart...      if (@parts) {       # multipart...
34          map { dump_entity($_) } @parts;          map { dump_entity($_) } @parts;
35      } else {            # single part...      } else {            # single part...
# Line 28  sub dump_entity { Line 37  sub dump_entity {
37  #             " (", scalar($ent->head->mime_type), ")\n";  #             " (", scalar($ent->head->mime_type), ")\n";
38          if ($ent->head->mime_type =~ m,text/plain,i) {          if ($ent->head->mime_type =~ m,text/plain,i) {
39                  open(I,$ent->bodyhandle->path) || die "$ent->bodyhandle->path: $!";                  open(I,$ent->bodyhandle->path) || die "$ent->bodyhandle->path: $!";
40                  while(<I>) { print $_; }                  while(<I>) { print MAIL $_; }
41                  close(I);                  close(I);
42                  unlink $ent->bodyhandle->path;                  unlink $ent->bodyhandle->path;
43          } else {          } else {
# Line 37  sub dump_entity { Line 46  sub dump_entity {
46                  $new=~s/ +/_/g;                  $new=~s/ +/_/g;
47                  $new=~s/^.*\/([^\/]+)$/$1/g;                  $new=~s/^.*\/([^\/]+)$/$1/g;
48                  $new=~s/[^a-zA-Z._0-9]//g;                  $new=~s/[^a-zA-Z._0-9]//g;
                 my $md5=md5_hex($new.time());  
                 mkdir "$outdir/$md5",0755 || die "mkdir $outdir/$md5: $!";  
49                  rename $file,"$outdir/$md5/$new" || die "$file -> $md5 $new: $!";                  rename $file,"$outdir/$md5/$new" || die "$file -> $md5 $new: $!";
50                  print "\nhttp://store.pliva.hr/$md5/$new\n";                  print MAIL "\n","-" x 76,"\nhttp://store.pliva.hr/$md5/$new\n";
51                    print LOG "$md5/$new\n";
52          }          }
53      }      }
54  }  }
# Line 76  exit (&main ? 0 : -1); Line 84  exit (&main ? 0 : -1);
84  #------------------------------------------------------------  #------------------------------------------------------------
85  1;  1;
86    
   
   
   
   
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.5

  ViewVC Help
Powered by ViewVC 1.1.26