Changeset 390


Ignore:
Timestamp:
02/18/10 17:50:02 (14 years ago)
Author:
Kris Deugau
Message:

/branches/stable

Commit live hacks for mail, updates to same

File:
1 edited

Legend:

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

    r383 r390  
    834834  return if !validateInput();
    835835
     836# 2009/12/1 kdeugau
     837# Since we're using these for more than just NOC-ish things now, removing
     838## Hack as per Jody.  Force CustID of NOC-VPN on 192.168 assignments
     839#if ($webvar{fullcidr} =~ /^192\.168/) {
     840#  $webvar{custid} = "NOC-VPN";
     841#}
     842
    836843  if (!defined($webvar{privdata})) {
    837844    $webvar{privdata} = '';
     
    868875                qq(">Add this netblock to RADIUS user table</a></div>)
    869876        : "</div>");
     877      mailNotify('nocmgr@example.com',"ADDED: $disp_alloctypes{$webvar{alloctype}} allocation",
     878        "$disp_alloctypes{$webvar{alloctype}} $webvar{fullcidr} allocated to customer $webvar{custid}\n".
     879        "Description: $webvar{desc}\n\nAllocated by: $authuser\n");
    870880    }
    871881    syslog "notice", "$authuser allocated '$webvar{fullcidr}' to '$webvar{custid}' as ".
     
    11381148  # If we get here, the operation succeeded.
    11391149  syslog "notice", "$authuser updated $webvar{block}";
     1150mailNotify('nocmgr@example.com',"SWIPed: $disp_alloctypes{$webvar{alloctype}} $webvar{block}",
     1151        "$webvar{block} had SWIP status changed to \"Yes\" by $authuser");
    11401152  open (HTML, "../updated.html")
    11411153        or croak "Could not open updated.html :$!";
     
    13171329        "$disp_alloctypes{$webvar{alloctype}} $webvar{block} deallocated by $authuser\n".
    13181330        "CustID: $custid\nCity: $city\nDescription: $description\n");
     1331    mailNotify('nocmgr@example.com',"REMOVED: $disp_alloctypes{$webvar{alloctype}} $webvar{block}",
     1332        "$disp_alloctypes{$webvar{alloctype}} $webvar{block} deallocated by $authuser\n".
     1333        "CustID: $custid\nCity: $city\nDescription: $description\n");
    13191334  } else {
    13201335    if ($webvar{alloctype} =~ /^.i$/) {
Note: See TracChangeset for help on using the changeset viewer.