Help for this page

Select Code to Download


  1. or download this
    "CN=MBX_MANA,OU= Mailboxes,DC=doman,DC=com",SMTP:Manager@domain.com;sm
    +tp:MBX_MANA@domain.com;FAX:MBX_MANA@domain.com;X400:c=us\;a= \;p=doma
    +in\;o=Exchange\;s=MANAGER\;,MBX_MANA,/o=Exchange Org/ou=First Adminis
    +trative Group/cn=Configuration/cn=Servers/cn=SERVER
    "CN=Guest,CN=Users,DC=domain,DC=com",,Guest,
    
  2. or download this
    my $parser = Text::CSV::Simple->new;
    $parser->want_fields(2, 3, 4);
    my @data = $parser->read_file($infile);
    
  3. or download this
    foreach my $line (@data) {
        chomp;
        if $line =~ /SMTP:/i 
    {do stuff} }