Ivan,
The current opensrs.sslbot script is available at
http://www.daze.net/opensrs/opensrs.sslbot2.pl.txt
It performs the following tasks:
1) Retrieve the list of active domains from the OpenSRS RWI
2) Write tab delimited file containing:
domain-name<tab>registration-date<tab>expiration-date
dates are formatted in ISO format: YYYY-MM-DD
3) Optionally write the information to a database (tested with mySQL)
Note: This clears the db table and then repopulates it with data
from the OpenSRS RWI each time the script is run.
Table structure for table 'opensrsactive'
CREATE TABLE opensrsactive (
domain varchar(128) DEFAULT '' NOT NULL,
regdate date DEFAULT '0000-00-00' NOT NULL,
expdate date DEFAULT '0000-00-00' NOT NULL
);
On Fri, 15 Jun 2001, Ivan (Netazoid) wrote:
> Am I missing something or creating a wish list here...
>
> I would like to be able to use a script to login and download a full list
> of domain in my account. I would want a script to be able to do this. I
> have gone to "search Active domains" in the RWI and done a search for
> *. The listing has all the pertinent info there... but i would prefer a
> plain delimited listing somehow (that could imported into an app). Does the
> perl code allow this somewhere I am missing?
>
> Thanks
> Ivan
>
>