[142] | 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-07-20 15:29:32 +0000 (Tue, 20 Jul 2010) $
|
---|
| 7 | # SVN revision $Rev: 437 $
|
---|
| 8 | # Last update by $Author: kdeugau $
|
---|
| 9 | ###
|
---|
[417] | 10 | # Copyright (C) 2004-2010 - Kris Deugau
|
---|
[142] | 11 |
|
---|
[417] | 12 | # don't remove! required for GNU/FHS-ish install from tarball
|
---|
| 13 | ##uselib##
|
---|
| 14 |
|
---|
[142] | 15 | use IPDB 2.0 qw(:ALL);
|
---|
| 16 |
|
---|
| 17 |
|
---|
[432] | 18 | # DSN, user, and password for database. These **MUST** be set.
|
---|
| 19 | my $dbname = 'ipdb';
|
---|
| 20 | my $dbuser = 'ipdb';
|
---|
| 21 | my $dbpass = 'ipdbpwd';
|
---|
| 22 | # DB host is optional.
|
---|
| 23 | my $dbhost = 'ipdb-db';
|
---|
| 24 |
|
---|
[416] | 25 | # Set some globals declared in IPDB.pm. Most of these only affect mailNotify().
|
---|
| 26 | # Note that while you *can* leave these at defaults, it's probably a Really Bad Idea.
|
---|
[437] | 27 | #$IPDB::org_name = "Bob's Big Bonaza";
|
---|
[416] | 28 | #$IPDB::smtphost = '127.0.0.1';
|
---|
| 29 | #$IPDB::domain = 'bob.com';
|
---|
[417] | 30 | #$IPDB::defcustid = '5554242';
|
---|
| 31 | # Globals for db2rwhois.pl
|
---|
[420] | 32 | #$IPDB::rwhoisDataPath = '/usr/local/rwhoisd/etc/rwhoisd';
|
---|
[417] | 33 | #$IPDB::org_street = '123 4th Street';
|
---|
| 34 | #$IPDB::org_city = 'Anytown';
|
---|
| 35 | #$IPDB::org_prov_state = 'ON';
|
---|
| 36 | #$IPDB::org_pocode = 'H0H 0H0';
|
---|
| 37 | #$IPDB::org_country = 'CA';
|
---|
| 38 | #$IPDB::org_phone = '000-555-1234';
|
---|
| 39 | # note: following may also just be a bare email address
|
---|
| 40 | #$IPDB::org_techhandle = 'ISP-ARIN-HANDLE';
|
---|
[434] | 41 | #$IPDB::org_email = 'noc@example.com';
|
---|
[437] | 42 | #$IPDB::hostmaster = 'dns@example.com';
|
---|
[416] | 43 |
|
---|
[417] | 44 | # Logging destination. Defaults to local2. See your local syslog docs for valid facilities.
|
---|
| 45 | # Note that the value here should have the LOG_ prefix removed, and convert to lower-case.
|
---|
| 46 | # local0 through local7 and user make the most sense.
|
---|
| 47 | #$IPDB::syslog_facility = 'daemon';
|
---|
| 48 |
|
---|
[432] | 49 |
|
---|
| 50 | ## connectDB_My()
|
---|
| 51 | # Wrapper for IPDB::connectDB
|
---|
| 52 | # Takes no arguments, returns whatever IPDB::connectDB returns.
|
---|
| 53 | sub connectDB_My {
|
---|
| 54 | return connectDB($dbname, $dbuser, $dbpass, $dbhost);
|
---|
| 55 | } # end connectDB_My()
|
---|
| 56 |
|
---|
[142] | 57 | # Keep Perl from complaining.
|
---|
| 58 | 1;
|
---|