Help for this page

Select Code to Download


  1. or download this
    Jul  6 14:36:41 moe postfix/smtp[15107]: A73DC113B63: to=<oetiker@conc
    +entric.com>, relay=adamant.concentric.com[207.155.248.168], delay=17,
    + status=bounced (host adamant.concentric.com[207.155.248.168] said: 5
    +54 <oetiker@concentric.com>: Recipient address rejected: Unknown or i
    +nvalid user oetiker@concentric.com (in reply to RCPT TO command))
    
  2. or download this
    while(<FILE>){
      chomp;
      my @text=split /:/, $_;
       warn Dumper(@text);     
    }
    
  3. or download this
    @text = (
              'Jul  6 14',
    ...
              ' Recipient address rejected',
              ' Unknown or invalid user oetiker@concentric.com (in reply t
    +o RCPT TO command))'
            );
    
  4. or download this
    $text[3] and $text[5]
    print "($text[3])\t($text[5])\n";