Ticket #2791: patch.diff

File patch.diff, 478 bytes (added by mbrevda, 4 years ago)
  • fax-process.pl

    old new  
    132132# And that's pretty much all the hard work done. Now we just create the 
    133133# headers for the MIME encapsulation: 
    134134my $boundary = '------FREEPBX_FAX_MAIL:'; 
    135 my $dtime = `date`; 
     135my $dtime = `date -R`; 
    136136chomp $dtime; 
    137137my @chrs = ('0' .. '9', 'A' .. 'Z', 'a' .. 'z'); 
    138138foreach (0..16) { $boundary .= $chrs[rand (scalar @chrs)]; }