Petur Kirke píše v Pá 14. 11. 2008 v 21:21 +0000:
I have created one domain nic.fo. When i ask for info
about this domain, i get this response:
Domain name nic.fo
Repository object ID D0000000006-CZ
Created by REG-TLD
Designated registrar REG-TLD
Created on 2008-11-06T12:19:50Z
Expiration date 2009-11-06
Password for transfer MCQwdZ7m
Status outzone - Domain is not generated into zone
Registrant ID ID05
question 1) Is it possible to change CZ to FO in the "Repository object ID", or
is it really nessesary ? (is it used publicly)
This is unfortunately hardcoded in one SQL procedure in
fred-db/sql/func.sql. You will have to replace '-CZ' with '-FO' and
recreate this procedure in for example in psql console:
CREATE OR REPLACE FUNCTION create_object(
crregid INTEGER,
oname VARCHAR,
otype INTEGER
)
RETURNS INTEGER AS $$
DECLARE iid INTEGER;
BEGIN
iid := NEXTVAL('object_registry_id_seq');
INSERT INTO object_registry (id,roid,name,type,crid)
VALUES (
iid,
(ARRAY['C','N','D', 'K'])[otype] ||
LPAD(iid::text,10,'0') || '-CZ' ,
CASE
WHEN otype=1 THEN UPPER(oname)
WHEN otype=2 THEN UPPER(oname)
WHEN otype=3 THEN LOWER(oname)
WHEN otype=4 THEN UPPER(oname)
END,
otype,
crregid
);
RETURN iid;
EXCEPTION
WHEN UNIQUE_VIOLATION THEN RETURN 0;
END;
$$ LANGUAGE plpgsql;
question 2) Why is "Domain not generated into
zone" and when does this happen ?
Because domain have no nsset associated. When there are no nameservers
it cannot be generated into zone.
This email and its attachments may be confidential and
are intended solely for the use of the individual to whom it is addressed.
If you are not the intended recipient or authorized to receive information for the
intended recipient you are notified that disclosing, copying, distributing or taking any
action in reliance on the contents of this information is strictly prohibited. If the
email contains proposals, they are valid for 30 days following the date of email
transmission. Finally, the recipient should check this email and any attachment for the
presence of viruses. The company accepts no liability for any damage caused by any virus
transmitted by email.
_______________________________________________
Fred-users mailing list
Fred-users(a)lists.nic.cz
https://lists.nic.cz/mailman/listinfo/fred-users