source: trunk/cgi-bin/MyIPDB.pm@ 417

Last change on this file since 417 was 417, checked in by Kris Deugau, 14 years ago

/trunk

Rearrangements and tweaks toward releaseability:

  • Add Makefile to install halfway-sanely
  • Add .spec file
  • Shuffle "use IPDB;" and "use MyIPDB;" lines so that we can automagically insert a suitable "use lib..." line during 'make install'
  • Check copyright statements
  • Clear up some defaults, and place a number of "constants" in IPDB/MyIPDB rather than having them hardcoded all over the place (Still need to think of a sane way to do this for ipdb.psql's alloctype preseeding)
  • Tweak $VERSION identifier in IPDB.pm so it can be defined in the Makefile
  • Clean up some dangling bits from repository history conversion, remove unneeded "use ..." statements
  • Tweak rWHOIS export script to use more globals and "constants" from (My)IPDB.pm, and more Perl internals than system()-equivalents. Add a few fixme comments for longer-term flexibility improvements.
  • Property svn:keywords set to Date Rev Author
File size: 1.4 KB
Line 
1# ipdb/cgi-bin/MyIPDB.pm
2# Contains site-specific functions for IPDB
3# May override some functions from IPDB.pm, wraps others
4###
5# SVN revision info
6# $Date: 2010-06-30 21:48:03 +0000 (Wed, 30 Jun 2010) $
7# SVN revision $Rev: 417 $
8# Last update by $Author: kdeugau $
9###
10# Copyright (C) 2004-2010 - Kris Deugau
11
12# don't remove! required for GNU/FHS-ish install from tarball
13##uselib##
14
15use IPDB 2.0 qw(:ALL);
16
17## connectDB_My()
18# Wrapper for IPDB::connectDB
19# Takes no arguments, returns whatever IPDB::connectDB returns.
20sub connectDB_My {
21 return connectDB("ipdb", "ipdb", "ipdbpwd");
22} # end connectDB_My()
23
24# Set some globals declared in IPDB.pm. Most of these only affect mailNotify().
25# Note that while you *can* leave these at defaults, it's probably a Really Bad Idea.
26#$IPDB::orgname = "Bob's Big Bonaza";
27#$IPDB::smtphost = '127.0.0.1';
28#$IPDB::domain = 'bob.com';
29#$IPDB::defcustid = '5554242';
30# Globals for db2rwhois.pl
31#$IPDB::org_street = '123 4th Street';
32#$IPDB::org_city = 'Anytown';
33#$IPDB::org_prov_state = 'ON';
34#$IPDB::org_pocode = 'H0H 0H0';
35#$IPDB::org_country = 'CA';
36#$IPDB::org_phone = '000-555-1234';
37# note: following may also just be a bare email address
38#$IPDB::org_techhandle = 'ISP-ARIN-HANDLE';
39
40# Logging destination. Defaults to local2. See your local syslog docs for valid facilities.
41# Note that the value here should have the LOG_ prefix removed, and convert to lower-case.
42# local0 through local7 and user make the most sense.
43#$IPDB::syslog_facility = 'daemon';
44
45# Keep Perl from complaining.
461;
Note: See TracBrowser for help on using the repository browser.