Ignore:
Timestamp:
01/05/07 10:50:47 (17 years ago)
Author:
Kris Deugau
Message:

/branches/stable

Bump up the verbosity of deallocation notices
Required a new function (getBlockData) to extract the data
before deleting the block

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/cgi-bin/main.cgi

    r338 r356  
    12981298  }
    12991299
     1300  # need to retrieve block data before deleting so we can notify on that
     1301  my ($cidr,$custid,$type,$city,$description) = getBlockData($ip_dbh, $webvar{block});
     1302
    13001303  my ($code,$msg) = deleteBlock($ip_dbh, $webvar{block}, $webvar{alloctype});
    13011304
    13021305  if ($code eq 'OK') {
    13031306    print "<div class=heading align=center>Success!  $webvar{block} deallocated.</div>\n";
    1304     syslog "notice", "$authuser deallocated '$webvar{alloctype}'-type netblock $webvar{block}";
     1307    syslog "notice", "$authuser deallocated '$webvar{alloctype}'-type netblock $webvar{block}".
     1308        " $custid, $city, desc='$description'";
    13051309    # Notify tech@ when a block/IP is deallocated
    13061310    mailNotify('tech@example.com',"REMOVED: $disp_alloctypes{$webvar{alloctype}} $webvar{block}",
    1307         "$disp_alloctypes{$webvar{alloctype}} $webvar{block} deallocated by $authuser\n");
     1311        "$disp_alloctypes{$webvar{alloctype}} $webvar{block} deallocated by $authuser\n".
     1312        "CustID: $custid\nCity: $city\nDescription: $description\n");
    13081313  } else {
    13091314    if ($webvar{alloctype} =~ /^.i$/) {
Note: See TracChangeset for help on using the changeset viewer.