On Thu, 6 May 2004, Aleksandar Skodric wrote:
> Hello all! I wrote a long time ago here a few messages, then got some
> other work, but I'm back now :-)
>
> I have one question regarding the transfer away e-mail message. To be exact:
>
> After the domain has been transfered away, we have to take some actions on
> our system to 'clean it up' of the domain that has been transfered.
>
> However, after looking at all the message's we receive from OpenSRS, I
> could not point to one saying: this one informs us that the domain x has
> been 100% transfered. We only receive that admin contact accepted, but
> unfortunately that doest not mean that domain will be transfered (or am I
> wrong about this?!). If we set an automated action on that e-mail AND if
> tranfer takes wrong turn and domain remains on our server, then the
> costumer will loose any and all services with us.
Usually when Admin contact of a domain confirmed a transfer away for the
domain we issue "ACK transfer" command to the registry and the registry
switches registrar immediately, we delete domain from DB and send email to
RSP. You may automate email handling with sanity check vi API call
'belongs_to_rsp' - if there is no domain in our DB , then
is_success => 0,
response_code => 465,
response_text => "Unknown domain: $domain_name",
If domain in our DB and you are the sponsoring RSP
response will be
is_success => 1,
response_code => 200,
response_text => "Query successful",
attributes => {
domain_expdate => $domain->expiredate,
belongs_to_rsp => 1,
}
or
is_success => 1,
response_code => 200,
response_text => "Query successful",
attributes => {
belongs_to_rsp => 0,
}
if you are not.
>
> So, does anyone know if, after admin-c has accepted transfer, that
> transfer can fail? If anyone has any tips how to make this work, or
> workaround, and would be glad to share it, I'm listening :-)
>
> Thanx all!
>
> With best regards,
> Aleksandar Skodric
> KPN Planet Technologies
> Postbus 28129
> 3828 ZJ Amersfoort / Groningen
> Tel: 06-20532271
> Fax: 030-6588236
> E-mail: [EMAIL PROTECTED]
>
--
E.Pirogov
OpenSRS Developer