diff --git a/CHANGELOG.md b/CHANGELOG.md
index 01ba9e7a2..e62f2a766 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+08.06.2015
+
+* Add sk service name to application.yml
+* Renew zonefile procedure
+
02.06.2015
* Added possibility to overwrite legal document types at application.yml level.
diff --git a/Gemfile b/Gemfile
index 2fbb63eb0..835585ea8 100644
--- a/Gemfile
+++ b/Gemfile
@@ -55,7 +55,7 @@ gem 'money-rails', '~> 1.3.0' # Money helpers
# deploy
gem 'whenever', '~> 0.9.4', require: false
-gem 'data_migrate',
+gem 'data_migrate',
github: 'gitlabeu/data_migrate',
ref: '35d22b09ff37a4e9d61ab326ad5d8eb0edf1fc81'
@@ -73,7 +73,7 @@ gem 'digidoc_client', '~> 0.2.1'
# epp
gem 'epp', '~> 1.4.2', github: 'gitlabeu/epp'
-gem 'epp-xml', '~> 1.0.1' # EPP XMLs
+gem 'epp-xml', '~> 1.0.2' # EPP XMLs
gem 'uuidtools', '~> 2.1.4' # For unique IDs (used by the epp gem)
# for importing legacy db
diff --git a/Gemfile.lock b/Gemfile.lock
index e4b506df3..56fbc99ad 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -171,7 +171,7 @@ GEM
nokogiri (>= 1.4.0)
savon (>= 2.4.0)
docile (1.1.5)
- epp-xml (1.0.1)
+ epp-xml (1.0.2)
activesupport (~> 4.1)
builder (~> 3.2)
equalizer (0.0.11)
@@ -529,7 +529,7 @@ DEPENDENCIES
devise (~> 3.4.1)
digidoc_client (~> 0.2.1)
epp (~> 1.4.2)!
- epp-xml (~> 1.0.1)
+ epp-xml (~> 1.0.2)
fabrication (~> 2.12.2)
faker (~> 1.3.0)
figaro (~> 1.1.0)
diff --git a/app/controllers/admin/admin_users_controller.rb b/app/controllers/admin/admin_users_controller.rb
index 372a9654a..17de2f97d 100644
--- a/app/controllers/admin/admin_users_controller.rb
+++ b/app/controllers/admin/admin_users_controller.rb
@@ -57,6 +57,7 @@ class Admin::AdminUsersController < AdminController
end
def admin_user_params
- params.require(:admin_user).permit(:username, :password, :password_confirmation, :identity_code, :email, :country_code, { roles: [] })
+ params.require(:admin_user).permit(:username,
+ :password, :password_confirmation, :identity_code, :email, :country_code, { roles: [] })
end
end
diff --git a/app/controllers/admin/pricelists_controller.rb b/app/controllers/admin/pricelists_controller.rb
index a0fa2c010..f17b877fd 100644
--- a/app/controllers/admin/pricelists_controller.rb
+++ b/app/controllers/admin/pricelists_controller.rb
@@ -39,6 +39,7 @@ class Admin::PricelistsController < AdminController
end
def pricelist_params
- params.require(:pricelist).permit(:category, :name, :duration, :price, :valid_from, :valid_to)
+ params.require(:pricelist).permit(:operation_category, :category, :price_category,
+ :duration, :price, :valid_from, :valid_to)
end
end
diff --git a/app/controllers/epp/contacts_controller.rb b/app/controllers/epp/contacts_controller.rb
index ef5f81986..6685ed708 100644
--- a/app/controllers/epp/contacts_controller.rb
+++ b/app/controllers/epp/contacts_controller.rb
@@ -118,6 +118,9 @@ class Epp::ContactsController < EppController
contact_org_disabled
fax_disabled
status_editing_disabled
+ if params[:parsed_frame].css('ident').present?
+ epp_errors << { code: '2306', msg: "#{I18n.t(:ident_update_error)} [ident]" }
+ end
requires 'id'
@prefix = nil
end
diff --git a/app/models/domain.rb b/app/models/domain.rb
index 8335d5f42..469847203 100644
--- a/app/models/domain.rb
+++ b/app/models/domain.rb
@@ -70,7 +70,7 @@ class Domain < ActiveRecord::Base
after_save :update_whois_record
validates :name_dirty, domain_name: true, uniqueness: true
- validates :name_puny, length: { maximum: 66 }
+ validates :puny_label, length: { maximum: 63 }
validates :period, numericality: { only_integer: true }
validates :registrant, :registrar, presence: true
@@ -146,6 +146,12 @@ class Domain < ActiveRecord::Base
{ admin_contacts: :registrar }
)
end
+
+ def expire_domains
+ Domain.where('valid_to <= ?', Time.zone.now).each do |x|
+ x.domain_statuses.create(value: DomainStatus::EXPIRED) if x.expirable?
+ end
+ end
end
def name=(value)
@@ -160,6 +166,10 @@ class Domain < ActiveRecord::Base
"EIS-#{id}"
end
+ def puny_label
+ name_puny.to_s.split('.').first
+ end
+
def registrant_typeahead
@registrant_typeahead || registrant.try(:name) || nil
end
@@ -174,6 +184,11 @@ class Domain < ActiveRecord::Base
)).empty?
end
+ def expirable?
+ return false if valid_to > Time.zone.now
+ domain_statuses.where(value: DomainStatus::EXPIRED).empty?
+ end
+
def pending_update?
(domain_statuses.pluck(:value) & %W(
#{DomainStatus::PENDING_UPDATE}
diff --git a/app/models/epp/contact.rb b/app/models/epp/contact.rb
index b07bdc124..d9ba0a48a 100644
--- a/app/models/epp/contact.rb
+++ b/app/models/epp/contact.rb
@@ -143,7 +143,6 @@ class Epp::Contact < Contact
at.deep_merge!(self.class.attrs_from(frame.css('rem'), 'rem'))
at.deep_merge!(self.class.attrs_from(frame.css('add')))
at.deep_merge!(self.class.attrs_from(frame.css('chg')))
- at.merge!(self.class.ident_attrs(frame.css('ident').first))
legal_frame = frame.css('legalDocument').first
at[:legal_documents_attributes] = self.class.legal_document_attrs(legal_frame)
self.deliver_emails = true # turn on email delivery for epp
diff --git a/app/models/epp/domain.rb b/app/models/epp/domain.rb
index 3f054003b..752ced9ab 100644
--- a/app/models/epp/domain.rb
+++ b/app/models/epp/domain.rb
@@ -34,7 +34,6 @@ class Epp::Domain < Domain
max: Setting.ns_max_count
}
],
- [:period, :out_of_range, { value: { obj: 'period', val: period } }],
[:dnskeys, :out_of_range,
{
min: Setting.dnskeys_min_count,
@@ -56,7 +55,7 @@ class Epp::Domain < Domain
],
'2005' => [ # Parameter value syntax error
[:name_dirty, :invalid, { obj: 'name', val: name_dirty }],
- [:name_puny, :too_long, { obj: 'name', val: name_puny }]
+ [:puny_label, :too_long, { obj: 'name', val: name_puny }]
],
'2201' => [ # Authorisation error
[:auth_info, :wrong_pw]
@@ -69,6 +68,7 @@ class Epp::Domain < Domain
[:base, :domain_status_prohibits_operation]
],
'2306' => [ # Parameter policy error
+ [:period, :out_of_range, { value: { obj: 'period', val: period } }],
[:base, :ds_data_with_key_not_allowed],
[:base, :ds_data_not_allowed],
[:base, :key_data_not_allowed],
@@ -429,6 +429,13 @@ class Epp::Domain < Domain
def renew(cur_exp_date, period, unit = 'y')
# TODO: Check how much time before domain exp date can it be renewed
validate_exp_dates(cur_exp_date)
+
+ if Setting.days_to_renew_domain_before_expire != 0
+ if (valid_to - Time.zone.now).to_i / 1.day >= Setting.days_to_renew_domain_before_expire
+ add_epp_error('2105', nil, nil, I18n.t('object_is_not_eligible_for_renewal'))
+ end
+ end
+
return false if errors.any?
p = self.class.convert_period_to_time(period, unit)
diff --git a/app/models/pricelist.rb b/app/models/pricelist.rb
index 12a567a95..e43fa4475 100644
--- a/app/models/pricelist.rb
+++ b/app/models/pricelist.rb
@@ -3,9 +3,11 @@ class Pricelist < ActiveRecord::Base
monetize :price_cents
- validates :price_cents, :price_currency, :valid_from, :category, presence: true
+ validates :price_cents, :price_currency, :price,
+ :valid_from, :category, :operation_category, :duration, presence: true
- CATEGORIES = %w(ee com.ee fie.ee pri.ee med.ee)
+ CATEGORIES = %w(ee pri.ee fie.ee med.ee com.ee)
+ OPERATION_CATEGORIES = %w(new renew)
DURATIONS = %w(1year 2years 3years)
after_initialize :init_values
@@ -13,4 +15,8 @@ class Pricelist < ActiveRecord::Base
return unless new_record?
self.valid_from = Time.zone.now.beginning_of_year
end
+
+ def name
+ "#{operation_category} #{category}"
+ end
end
diff --git a/app/validators/domain_name_validator.rb b/app/validators/domain_name_validator.rb
index 6a2d41c43..93046c882 100644
--- a/app/validators/domain_name_validator.rb
+++ b/app/validators/domain_name_validator.rb
@@ -1,11 +1,4 @@
class DomainNameValidator < ActiveModel::EachValidator
- # TODO
- # validates lenght of 2-63
- # validates/honours Estonian additional letters zäõüö
- # honours punicode and all interfces honors utf8
- # validates lower level domains (.pri.ee, edu.ee etc)
- # lower level domains are fixed for .ee and can add statically into settings
-
def validate_each(record, attribute, value)
if !self.class.validate_format(value)
record.errors[attribute] << (options[:message] || record.errors.generate_message(attribute, :invalid))
diff --git a/app/views/admin/pricelists/_form.haml b/app/views/admin/pricelists/_form.haml
index 0472b0267..9ac3c4fa2 100644
--- a/app/views/admin/pricelists/_form.haml
+++ b/app/views/admin/pricelists/_form.haml
@@ -3,12 +3,12 @@
.row
.col-md-6
+ .form-group
+ = f.label :operation_category
+ = f.select(:operation_category, Pricelist::OPERATION_CATEGORIES, {}, { class: 'form-control' })
.form-group
= f.label :category, t(:category)
= f.select(:category, Pricelist::CATEGORIES, {}, { class: 'form-control' })
- .form-group
- = f.label :name
- = f.text_field(:name, class: 'form-control')
.form-group
= f.label :duration
= f.select(:duration, Pricelist::DURATIONS, {}, { class: 'form-control' })
diff --git a/app/views/admin/pricelists/index.haml b/app/views/admin/pricelists/index.haml
index 2116222c8..15a6b9c6b 100644
--- a/app/views/admin/pricelists/index.haml
+++ b/app/views/admin/pricelists/index.haml
@@ -5,20 +5,6 @@
%h2.text-right.text-center-xs
= link_to(t(:new), new_admin_pricelist_path, class: 'btn btn-primary')
-%hr
--# .row
- -# .col-md-12
- -# = form_tag admin_pricelists_path, html: { class: 'form-horizontal' } do
- -# .col-md-11
- -# .form-group
- -# = search_field_tag :name_cont, class: 'form-control'
- -# .col-md-1.text-right.text-center-xs
- -# .form-group
- -# %button.btn.btn-primary
- -#
- -# %span.glyphicon.glyphicon-search
- -#
-
%hr
.row
.col-md-12
@@ -29,9 +15,9 @@
%th{class: 'col-xs-2'}
= sort_link(@q, 'category', t(:category))
%th{class: 'col-xs-2'}
- = sort_link(@q, 'duration', t(:duration))
+ = sort_link(@q, 'operation_category', t(:operation))
%th{class: 'col-xs-2'}
- = sort_link(@q, 'name', t(:name))
+ = sort_link(@q, 'duration', t(:duration))
%th{class: 'col-xs-2'}
= sort_link(@q, 'price', t(:price))
%th{class: 'col-xs-2'}
@@ -45,8 +31,8 @@
- @pricelists.each do |pricelist|
%tr
%td= pricelist.category
+ %td= pricelist.operation_category
%td= pricelist.duration
- %td= pricelist.name
%td= pricelist.price
%td= l(pricelist.valid_from, format: :ydate)
%td= l(pricelist.valid_to, format: :ydate)
diff --git a/app/views/epp/contacts/info.xml.builder b/app/views/epp/contacts/info.xml.builder
index 164ce19c0..3862805d5 100644
--- a/app/views/epp/contacts/info.xml.builder
+++ b/app/views/epp/contacts/info.xml.builder
@@ -55,7 +55,7 @@ xml.epp_head do
end
if can? :view_full_info, @contact, @password
xml.tag!('extension') do
- xml.tag!('eis:extdata', 'xmlns:eis' => 'urn:ee:eis:xml:epp:eis-1.0') do
+ xml.tag!('eis:extdata', 'xmlns:eis' => 'https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd') do
xml.tag!('eis:ident', @contact.ident,
type: @contact.ident_type, cc: @contact.ident_country_code)
end
diff --git a/app/views/epp/sessions/greeting.xml.builder b/app/views/epp/sessions/greeting.xml.builder
index c5a1a1a9e..7a66dbc6e 100644
--- a/app/views/epp/sessions/greeting.xml.builder
+++ b/app/views/epp/sessions/greeting.xml.builder
@@ -11,7 +11,7 @@ xml.epp_head do
xml.objURI 'urn:ietf:params:xml:ns:keyrelay-1.0'
xml.svcExtension do
xml.extURI 'urn:ietf:params:xml:ns:secDNS-1.1'
- xml.extURI 'urn:ee:eis:xml:epp:eis-1.0'
+ xml.extURI 'https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd'
end
end
diff --git a/app/views/registrar/xml_consoles/epp_requests/contact/create.xml b/app/views/registrar/xml_consoles/epp_requests/contact/create.xml
index 6264ddeb8..17d72dfbd 100644
--- a/app/views/registrar/xml_consoles/epp_requests/contact/create.xml
+++ b/app/views/registrar/xml_consoles/epp_requests/contact/create.xml
@@ -20,7 +20,7 @@
-
+
123
JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0Zp==
diff --git a/app/views/registrar/xml_consoles/epp_requests/contact/delete.xml b/app/views/registrar/xml_consoles/epp_requests/contact/delete.xml
index 7b98c32df..c3e1b7b0c 100644
--- a/app/views/registrar/xml_consoles/epp_requests/contact/delete.xml
+++ b/app/views/registrar/xml_consoles/epp_requests/contact/delete.xml
@@ -11,7 +11,7 @@
-
+
JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0Zp==
diff --git a/app/views/registrar/xml_consoles/epp_requests/contact/update_chg.xml b/app/views/registrar/xml_consoles/epp_requests/contact/update_chg.xml
index 01e13e701..7396c6065 100644
--- a/app/views/registrar/xml_consoles/epp_requests/contact/update_chg.xml
+++ b/app/views/registrar/xml_consoles/epp_requests/contact/update_chg.xml
@@ -25,7 +25,7 @@
-
+
JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0Zp==
diff --git a/app/views/registrar/xml_consoles/epp_requests/domain/create.xml b/app/views/registrar/xml_consoles/epp_requests/domain/create.xml
index 97be9f695..8584e0c82 100644
--- a/app/views/registrar/xml_consoles/epp_requests/domain/create.xml
+++ b/app/views/registrar/xml_consoles/epp_requests/domain/create.xml
@@ -33,7 +33,7 @@
-
+
JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0Zp==
diff --git a/app/views/registrar/xml_consoles/epp_requests/domain/delete.xml b/app/views/registrar/xml_consoles/epp_requests/domain/delete.xml
index 47692e340..69b21e076 100644
--- a/app/views/registrar/xml_consoles/epp_requests/domain/delete.xml
+++ b/app/views/registrar/xml_consoles/epp_requests/domain/delete.xml
@@ -8,7 +8,7 @@
-
+
JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0Zp==
diff --git a/app/views/registrar/xml_consoles/epp_requests/domain/transfer.xml b/app/views/registrar/xml_consoles/epp_requests/domain/transfer.xml
index 1c9e0a254..312f58bfa 100644
--- a/app/views/registrar/xml_consoles/epp_requests/domain/transfer.xml
+++ b/app/views/registrar/xml_consoles/epp_requests/domain/transfer.xml
@@ -11,7 +11,7 @@
-
+
JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0Zp==
diff --git a/app/views/registrar/xml_consoles/epp_requests/domain/update.xml b/app/views/registrar/xml_consoles/epp_requests/domain/update.xml
index f0d4b1f81..aef4b2037 100644
--- a/app/views/registrar/xml_consoles/epp_requests/domain/update.xml
+++ b/app/views/registrar/xml_consoles/epp_requests/domain/update.xml
@@ -37,7 +37,7 @@
-
+
JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0Zp==
diff --git a/app/views/registrar/xml_consoles/epp_requests/keyrelay/keyrelay.xml b/app/views/registrar/xml_consoles/epp_requests/keyrelay/keyrelay.xml
index 84ece643a..a209778c8 100644
--- a/app/views/registrar/xml_consoles/epp_requests/keyrelay/keyrelay.xml
+++ b/app/views/registrar/xml_consoles/epp_requests/keyrelay/keyrelay.xml
@@ -16,7 +16,7 @@
P1D
-
+
JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0Zp==
1422542244
diff --git a/config/initializers/initial_settings.rb b/config/initializers/initial_settings.rb
index 28a7d0d68..018e4be22 100644
--- a/config/initializers/initial_settings.rb
+++ b/config/initializers/initial_settings.rb
@@ -31,6 +31,7 @@ if con.present? && con.table_exists?('settings')
Setting.save_default(:invoice_number_min, '131050')
Setting.save_default(:invoice_number_max, '149999')
Setting.save_default(:days_to_keep_overdue_invoices_active, 30)
+ Setting.save_default(:days_to_renew_domain_before_expire, 90)
end
# dev only setting
diff --git a/config/initializers/relaxed_i18n.rb b/config/initializers/relaxed_i18n.rb
index ca9d0c034..fc9b94983 100644
--- a/config/initializers/relaxed_i18n.rb
+++ b/config/initializers/relaxed_i18n.rb
@@ -4,7 +4,7 @@ module I18n
class << self
alias_method :original_localize, :localize
- def localize object, options = {}
+ def localize(object, options = {})
object.present? ? original_localize(object, options) : ''
end
end
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 2d4f14d66..5efa0fbb2 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -64,7 +64,7 @@ en:
invalid: 'Domain name is invalid'
reserved: 'Domain name is reserved or restricted'
taken: 'Domain name already exists'
- name_puny:
+ puny_label:
too_long: 'Domain name is too long (maximum is 63 characters)'
registrant:
blank: 'Registrant is missing'
@@ -505,6 +505,7 @@ en:
crt_revoked: 'CRT (revoked)'
contact_org_error: 'Parameter value policy error. Org must be blank'
contact_fax_error: 'Parameter value policy error. Fax must be blank'
+ ident_update_error: 'Parameter value policy error. Update of ident data not allowed'
invoices: 'Invoices'
no_such_user: 'No such user'
log_in: 'Log in'
@@ -816,3 +817,4 @@ en:
new_pricelist: New Pricelist
valid: Valid
category: Zone
+ object_is_not_eligible_for_renewal: 'Object is not eligible for renewal'
diff --git a/config/schedule.rb b/config/schedule.rb
index b1ad5a403..3f366a946 100644
--- a/config/schedule.rb
+++ b/config/schedule.rb
@@ -24,6 +24,10 @@ every :day, at: '12:10pm' do
runner 'Invoice.cancel_overdue_invoices'
end
+every :day, at: '12:15pm' do
+ runner 'Domain.expire_domains'
+end
+
every 3.hours do
runner 'Certificate.update_crl'
end
diff --git a/db/data/20150609093515_add_renew_setting.rb b/db/data/20150609093515_add_renew_setting.rb
new file mode 100644
index 000000000..f462c38cb
--- /dev/null
+++ b/db/data/20150609093515_add_renew_setting.rb
@@ -0,0 +1,9 @@
+class AddRenewSetting < ActiveRecord::Migration
+ def self.up
+ Setting.days_to_renew_domain_before_expire = 90
+ end
+
+ def self.down
+ raise ActiveRecord::IrreversibleMigration
+ end
+end
diff --git a/db/migrate/20150609103333_update_pricelist_chema.rb b/db/migrate/20150609103333_update_pricelist_chema.rb
new file mode 100644
index 000000000..b309a76b5
--- /dev/null
+++ b/db/migrate/20150609103333_update_pricelist_chema.rb
@@ -0,0 +1,6 @@
+class UpdatePricelistChema < ActiveRecord::Migration
+ def change
+ add_column :pricelists, :operation_category, :string
+ rename_column :pricelists, :name, :desc
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
index 48396524a..2f0849424 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20150603212659) do
+ActiveRecord::Schema.define(version: 20150609103333) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -19,7 +19,7 @@ ActiveRecord::Schema.define(version: 20150603212659) do
create_table "account_activities", force: :cascade do |t|
t.integer "account_id"
t.integer "invoice_id"
- t.decimal "sum", precision: 10, scale: 2
+ t.decimal "sum", precision: 8, scale: 2
t.string "currency"
t.integer "bank_transaction_id"
t.datetime "created_at"
@@ -36,7 +36,7 @@ ActiveRecord::Schema.define(version: 20150603212659) do
create_table "accounts", force: :cascade do |t|
t.integer "registrar_id"
t.string "account_type"
- t.decimal "balance", precision: 10, scale: 2, default: 0.0, null: false
+ t.decimal "balance", precision: 8, scale: 2, default: 0.0, null: false
t.datetime "created_at"
t.datetime "updated_at"
t.string "currency"
@@ -98,7 +98,7 @@ ActiveRecord::Schema.define(version: 20150603212659) do
t.string "buyer_name"
t.string "document_no"
t.string "description"
- t.decimal "sum", precision: 10, scale: 2
+ t.decimal "sum", precision: 8, scale: 2
t.string "reference_no"
t.datetime "paid_at"
t.datetime "created_at"
@@ -114,7 +114,7 @@ ActiveRecord::Schema.define(version: 20150603212659) do
t.string "vk_rec_id"
t.string "vk_stamp"
t.string "vk_t_no"
- t.decimal "vk_amount", precision: 10, scale: 2
+ t.decimal "vk_amount", precision: 8, scale: 2
t.string "vk_curr"
t.string "vk_rec_acc"
t.string "vk_rec_name"
@@ -328,10 +328,10 @@ ActiveRecord::Schema.define(version: 20150603212659) do
create_table "invoice_items", force: :cascade do |t|
t.integer "invoice_id"
- t.string "description", null: false
+ t.string "description", null: false
t.string "unit"
t.integer "amount"
- t.decimal "price", precision: 10, scale: 2
+ t.decimal "price", precision: 8, scale: 2
t.datetime "created_at"
t.datetime "updated_at"
t.string "creator_str"
@@ -341,20 +341,20 @@ ActiveRecord::Schema.define(version: 20150603212659) do
add_index "invoice_items", ["invoice_id"], name: "index_invoice_items_on_invoice_id", using: :btree
create_table "invoices", force: :cascade do |t|
- t.datetime "created_at", null: false
- t.datetime "updated_at", null: false
- t.string "invoice_type", null: false
- t.datetime "due_date", null: false
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.string "invoice_type", null: false
+ t.datetime "due_date", null: false
t.string "payment_term"
- t.string "currency", null: false
+ t.string "currency", null: false
t.string "description"
t.string "reference_no"
- t.decimal "vat_prc", precision: 10, scale: 2, null: false
+ t.decimal "vat_prc", precision: 8, scale: 2, null: false
t.datetime "paid_at"
t.integer "seller_id"
- t.string "seller_name", null: false
+ t.string "seller_name", null: false
t.string "seller_reg_no"
- t.string "seller_iban", null: false
+ t.string "seller_iban", null: false
t.string "seller_bank"
t.string "seller_swift"
t.string "seller_vat_no"
@@ -368,7 +368,7 @@ ActiveRecord::Schema.define(version: 20150603212659) do
t.string "seller_email"
t.string "seller_contact_name"
t.integer "buyer_id"
- t.string "buyer_name", null: false
+ t.string "buyer_name", null: false
t.string "buyer_reg_no"
t.string "buyer_country_code"
t.string "buyer_state"
@@ -382,7 +382,7 @@ ActiveRecord::Schema.define(version: 20150603212659) do
t.string "updator_str"
t.integer "number"
t.datetime "cancelled_at"
- t.decimal "sum_cache", precision: 10, scale: 2
+ t.decimal "sum_cache", precision: 8, scale: 2
end
add_index "invoices", ["buyer_id"], name: "index_invoices_on_buyer_id", using: :btree
@@ -886,17 +886,18 @@ ActiveRecord::Schema.define(version: 20150603212659) do
add_index "people", ["reset_password_token"], name: "index_people_on_reset_password_token", unique: true, using: :btree
create_table "pricelists", force: :cascade do |t|
- t.string "name"
+ t.string "desc"
t.string "category"
- t.decimal "price_cents", precision: 8, scale: 2, default: 0.0, null: false
- t.string "price_currency", default: "EUR", null: false
+ t.decimal "price_cents", precision: 8, scale: 2, default: 0.0, null: false
+ t.string "price_currency", default: "EUR", null: false
t.datetime "valid_from"
t.datetime "valid_to"
t.string "creator_str"
t.string "updator_str"
- t.datetime "created_at", null: false
- t.datetime "updated_at", null: false
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
t.string "duration"
+ t.string "operation_category"
end
create_table "registrant_verifications", force: :cascade do |t|
@@ -982,7 +983,7 @@ ActiveRecord::Schema.define(version: 20150603212659) do
t.text "crt"
t.string "type"
t.string "registrant_ident"
- t.string "encrypted_password", default: ""
+ t.string "encrypted_password", default: "", null: false
t.datetime "remember_created_at"
t.integer "failed_attempts", default: 0, null: false
t.datetime "locked_at"
diff --git a/doc/epp-doc.md b/doc/epp-doc.md
index 7ac516f3c..5c4cc7562 100644
--- a/doc/epp-doc.md
+++ b/doc/epp-doc.md
@@ -16,5 +16,15 @@ Our implementation supports following protocols:
[RFC5910 - DNSSEC Mapping](http://tools.ietf.org/html/rfc5910)
[RFC3735 - Guidelines for Extending the EPP](http://tools.ietf.org/html/rfc3735)
+Related XML Schema Definitions (may differ from policies applied to registry):
+
+[contact-1.0.xsd](schemas/contact-1.0.xsd)
+[domain-1.0.xsd](schemas/domain-1.0.xsd)
+[eis-1.0.xsd](schemas/eis-1.0.xsd)
+[epp-1.0.xsd](schemas/epp-1.0.xsd)
+[eppcom-1.0.xsd](schemas/eppcom-1.0.xsd)
+[host-1.0.xsd](schemas/host-1.0.xsd)
+[secDNS-1.1.xsd](schemas/secDNS-1.1.xsd)
+
More info about The Extensible Provisioning Protocol (EPP):
http://en.wikipedia.org/wiki/Extensible_Provisioning_Protocol
diff --git a/doc/epp-examples.md b/doc/epp-examples.md
index 0bf3e0f27..586d32cec 100644
--- a/doc/epp-examples.md
+++ b/doc/epp-examples.md
@@ -1,6 +1,6 @@
# EPP REQUEST - RESPONSE EXAMPLES
-GENERATED AT: 2015-06-02 14:33:32 UTC
-EXAMPLE COUNT: 163
+GENERATED AT: 2015-06-09 13:35:01 UTC
+EXAMPLE COUNT: 166
---
@@ -24,7 +24,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -44,7 +44,7 @@ RESPONSE:
ABC-12345
- ccReg-6230722077
+ ccReg-4203572032
@@ -98,7 +98,7 @@ RESPONSE:
ABC-12345
- ccReg-2436314288
+ ccReg-9221584209
@@ -128,9 +128,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -149,13 +149,13 @@ RESPONSE:
- FIRST0:BFAAF15D
- 2015-06-02T14:33:33Z
+ FIRST0:6C834599
+ 2015-06-09T13:35:02Z
ABC-12345
- ccReg-4530178352
+ ccReg-5088097391
@@ -185,9 +185,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
1990-22-12
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -206,13 +206,13 @@ RESPONSE:
- FIRST0:635DE0CA
- 2015-06-02T14:33:33Z
+ FIRST0:4620C3C8
+ 2015-06-09T13:35:02Z
ABC-12345
- ccReg-5498820681
+ ccReg-9251142773
@@ -242,9 +242,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -263,13 +263,13 @@ RESPONSE:
- FIRST0:ECD18A3E
- 2015-06-02T14:33:33Z
+ FIRST0:F8703FED
+ 2015-06-09T13:35:02Z
ABC-12345
- ccReg-5765263080
+ ccReg-3886190422
@@ -299,9 +299,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -320,13 +320,13 @@ RESPONSE:
- FIRST0:FFDB1C8C
- 2015-06-02T14:33:33Z
+ FIRST0:46D9EFDA
+ 2015-06-09T13:35:02Z
ABC-12345
- ccReg-5853521848
+ ccReg-1904538608
@@ -357,9 +357,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -379,12 +379,12 @@ RESPONSE:
FIRST0:ABC12345
- 2015-06-02T14:33:33Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-8418715972
+ ccReg-7705716213
@@ -415,9 +415,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -437,12 +437,12 @@ RESPONSE:
FIRST0:ABC:ABC:12345
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-6634701754
+ ccReg-7327043796
@@ -473,9 +473,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -494,7 +494,7 @@ RESPONSE:
ABC-12345
- ccReg-9426747388
+ ccReg-8113718660
@@ -524,7 +524,7 @@ REQUEST:
-
+
1990-22-12
@@ -544,7 +544,7 @@ RESPONSE:
ABC-12345
- ccReg-9000074813
+ ccReg-0594853538
@@ -575,9 +575,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -597,12 +597,12 @@ RESPONSE:
FIRST0:CID:FIRST0:ABC:ABC:NEW:12345
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-2762778594
+ ccReg-2412297652
@@ -633,9 +633,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -655,12 +655,12 @@ RESPONSE:
FIRST0:CID:FIRST0:ABC:CID:ABC:NEW:12345
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-4333012044
+ ccReg-4348673137
@@ -691,9 +691,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -713,12 +713,12 @@ RESPONSE:
FIRST0:ABC22
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-7907073349
+ ccReg-3981120996
@@ -749,9 +749,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -771,12 +771,12 @@ RESPONSE:
FIRST0:CID2:FIRST0:ABC:ABC:11111
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-5362420340
+ ccReg-2884590809
@@ -807,9 +807,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -829,12 +829,12 @@ RESPONSE:
FIRST0:CID:FIRST0
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-5984172001
+ ccReg-0547273456
@@ -864,9 +864,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -885,13 +885,13 @@ RESPONSE:
- FIRST0:1AB4EF0A
- 2015-06-02T14:33:34Z
+ FIRST0:C9C0A19D
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-7374911098
+ ccReg-3795099690
@@ -921,9 +921,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -942,13 +942,13 @@ RESPONSE:
- FIRST0:506E3755
- 2015-06-02T14:33:34Z
+ FIRST0:BA416759
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-1091018985
+ ccReg-6735333936
@@ -979,9 +979,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -1000,7 +1000,7 @@ RESPONSE:
ABC-12345
- ccReg-0955782824
+ ccReg-5572539591
@@ -1031,9 +1031,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -1052,7 +1052,7 @@ RESPONSE:
ABC-12345
- ccReg-9064313895
+ ccReg-7896008898
@@ -1088,7 +1088,7 @@ RESPONSE:
ABC-12345
- ccReg-0098456941
+ ccReg-7092361254
@@ -1118,9 +1118,8 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
- 37605030299
ABC-12345
@@ -1142,7 +1141,7 @@ RESPONSE:
ABC-12345
- ccReg-0459133757
+ ccReg-1402285256
@@ -1172,9 +1171,8 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
- 37605030299
ABC-12345
@@ -1194,12 +1192,12 @@ RESPONSE:
FIRST0:SH8013
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-4068674584
+ ccReg-9693034586
@@ -1240,12 +1238,12 @@ RESPONSE:
FIRST0:SH8013
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-6371937684
+ ccReg-6139348457
@@ -1273,7 +1271,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -1293,7 +1291,7 @@ RESPONSE:
ABC-12345
- ccReg-4287413368
+ ccReg-1380163901
@@ -1321,9 +1319,8 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
- 37605030299
ABC-12345
@@ -1343,12 +1340,12 @@ RESPONSE:
FIRST0:SH8013
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-3629290845
+ ccReg-3886685118
@@ -1374,7 +1371,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -1394,7 +1391,7 @@ RESPONSE:
ABC-12345
- ccReg-3416539499
+ ccReg-2292034781
@@ -1422,7 +1419,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -1442,7 +1439,7 @@ RESPONSE:
ABC-12345
- ccReg-6084983175
+ ccReg-8235620413
@@ -1480,7 +1477,7 @@ RESPONSE:
ABC-12345
- ccReg-8736173206
+ ccReg-6132581881
@@ -1506,7 +1503,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -1526,7 +1523,7 @@ RESPONSE:
ABC-12345
- ccReg-5138470152
+ ccReg-9302847506
@@ -1556,9 +1553,8 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
- 37605030299
ABC-12345
@@ -1580,7 +1576,7 @@ RESPONSE:
ABC-12345
- ccReg-3106468971
+ ccReg-8415763274
@@ -1611,9 +1607,8 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
- 37605030299
ABC-12345
@@ -1635,13 +1630,13 @@ RESPONSE:
ABC-12345
- ccReg-9681225225
+ ccReg-7541205064
```
-### EPP Contact with valid user update command should update ident
+### EPP Contact with valid user update command should not be able to update ident
REQUEST:
@@ -1665,9 +1660,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
1990-22-12
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -1681,18 +1676,12 @@ RESPONSE:
-
- Command completed successfully
+
+ Parameter value policy error. Update of ident data not allowed [ident]
-
-
- FIRST0:SH8013
- 2015-06-02T14:33:34Z
-
-
ABC-12345
- ccReg-5854801523
+ ccReg-9309359178
@@ -1723,9 +1712,8 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
- 37605030299
ABC-12345
@@ -1744,7 +1732,7 @@ RESPONSE:
ABC-12345
- ccReg-5014808216
+ ccReg-9131093492
@@ -1775,9 +1763,8 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
- 37605030299
ABC-12345
@@ -1796,7 +1783,7 @@ RESPONSE:
ABC-12345
- ccReg-3138655440
+ ccReg-5838085591
@@ -1835,7 +1822,7 @@ RESPONSE:
ABC-12345
- ccReg-1202026525
+ ccReg-2157474251
@@ -1877,12 +1864,12 @@ RESPONSE:
FIRST0:SH8013
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-8482651143
+ ccReg-0259656504
@@ -1927,7 +1914,7 @@ RESPONSE:
ABC-12345
- ccReg-0476088143
+ ccReg-0438834967
@@ -1972,12 +1959,12 @@ RESPONSE:
FIRST0:SH8013
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-2381236121
+ ccReg-4091528204
@@ -2021,7 +2008,7 @@ RESPONSE:
ABC-12345
- ccReg-9942427692
+ ccReg-2465545899
@@ -2065,7 +2052,7 @@ RESPONSE:
ABC-12345
- ccReg-1923124091
+ ccReg-5892884503
@@ -2110,12 +2097,12 @@ RESPONSE:
FIRST0:SH8013
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-6937138477
+ ccReg-0870246010
@@ -2160,12 +2147,12 @@ RESPONSE:
FIRST0:SH8013
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-8157062513
+ ccReg-8626733525
@@ -2213,12 +2200,12 @@ RESPONSE:
FIRST0:SH8013
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-7418830300
+ ccReg-6105406108
@@ -2262,12 +2249,12 @@ RESPONSE:
FIRST0:SH8013
- 2015-06-02T14:33:34Z
+ 2015-06-09T13:35:03Z
ABC-12345
- ccReg-8725012100
+ ccReg-1921952196
@@ -2310,7 +2297,7 @@ RESPONSE:
ABC-12345
- ccReg-9250241677
+ ccReg-0516943178
@@ -2353,7 +2340,7 @@ RESPONSE:
ABC-12345
- ccReg-2809833413
+ ccReg-5100126605
@@ -2386,7 +2373,7 @@ RESPONSE:
ABC-12345
- ccReg-5888335261
+ ccReg-0687265472
@@ -2409,9 +2396,9 @@ REQUEST:
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -2433,7 +2420,7 @@ RESPONSE:
ABC-12345
- ccReg-6947253989
+ ccReg-0626434902
@@ -2449,16 +2436,16 @@ REQUEST:
- FIRST0:SH775351913
+ FIRST0:SH663012063
password
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -2477,7 +2464,7 @@ RESPONSE:
ABC-12345
- ccReg-8502485863
+ ccReg-2496123572
@@ -2493,16 +2480,16 @@ REQUEST:
- FIRST0:SH122058824
+ FIRST0:SH368536654
wrong password
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -2521,7 +2508,7 @@ RESPONSE:
ABC-12345
- ccReg-7196323268
+ ccReg-6226749853
@@ -2537,7 +2524,7 @@ REQUEST:
- FIRST0:SH648085365
+ FIRST0:SH779323685
ABC-12345
@@ -2556,7 +2543,7 @@ RESPONSE:
ABC-12345
- ccReg-6213636307
+ ccReg-2520490917
@@ -2572,16 +2559,16 @@ REQUEST:
- FIRST0:SH093153696
+ FIRST0:SH249990216
password
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -2600,7 +2587,7 @@ RESPONSE:
ABC-12345
- ccReg-1553298253
+ ccReg-1888396572
@@ -2628,7 +2615,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -2648,7 +2635,7 @@ RESPONSE:
ABC-12345
- ccReg-2543150383
+ ccReg-8658082753
@@ -2662,16 +2649,16 @@ REQUEST:
- FIRST0:SH592496019
+ FIRST0:SH939591719
password
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -2690,7 +2677,7 @@ RESPONSE:
ABC-12345
- ccReg-8268301421
+ ccReg-8410445981
@@ -2716,7 +2703,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -2736,7 +2723,7 @@ RESPONSE:
ABC-12345
- ccReg-7898144133
+ ccReg-5128225677
@@ -2764,7 +2751,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -2784,7 +2771,7 @@ RESPONSE:
ABC-12345
- ccReg-9845535101
+ ccReg-6112113356
@@ -2798,7 +2785,7 @@ REQUEST:
- FIRST0:SH1717284010
+ FIRST0:SH9139254410
ABC-12345
@@ -2817,7 +2804,7 @@ RESPONSE:
ABC-12345
- ccReg-9590483188
+ ccReg-9312237061
@@ -2843,7 +2830,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -2863,7 +2850,7 @@ RESPONSE:
ABC-12345
- ccReg-2912535335
+ ccReg-4146549389
@@ -2891,7 +2878,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -2911,7 +2898,7 @@ RESPONSE:
ABC-12345
- ccReg-9456762174
+ ccReg-2564543604
@@ -2925,16 +2912,16 @@ REQUEST:
- FIRST0:SH7480704111
+ FIRST0:SH5845091911
wrong password
-
- dGVzdCBmYWlsCg==
+
37605030299
+ dGVzdCBmYWlsCg==
ABC-12345
@@ -2953,7 +2940,7 @@ RESPONSE:
ABC-12345
- ccReg-3618211988
+ ccReg-4212509671
@@ -2979,7 +2966,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -2999,7 +2986,7 @@ RESPONSE:
ABC-12345
- ccReg-2435051659
+ ccReg-5610489730
@@ -3032,7 +3019,7 @@ RESPONSE:
ABC-12345
- ccReg-1012922903
+ ccReg-1070267844
@@ -3079,7 +3066,7 @@ RESPONSE:
ABC-12345
- ccReg-9154199000
+ ccReg-5105845187
@@ -3126,7 +3113,7 @@ RESPONSE:
ABC-12345
- ccReg-1186568828
+ ccReg-4091194557
@@ -3159,7 +3146,7 @@ RESPONSE:
ABC-12345
- ccReg-0978696432
+ ccReg-5495110731
@@ -3200,7 +3187,7 @@ RESPONSE:
ABC-12345
- ccReg-5470784563
+ ccReg-7577243430
@@ -3252,10 +3239,10 @@ RESPONSE:
+372.12345678
- aleandro@kub.info
+ leonor@will.name
fixed registrar
TEST-CREATOR
- 2015-06-02T14:33:37Z
+ 2015-06-09T13:35:06Z
password
@@ -3268,7 +3255,7 @@ RESPONSE:
ABC-12345
- ccReg-9026818080
+ ccReg-3697475700
@@ -3320,10 +3307,10 @@ RESPONSE:
+372.12345678
- aleandro@kub.info
+ leonor@will.name
fixed registrar
TEST-CREATOR
- 2015-06-02T14:33:37Z
+ 2015-06-09T13:35:06Z
password
@@ -3336,7 +3323,7 @@ RESPONSE:
ABC-12345
- ccReg-6616273205
+ ccReg-0748814090
@@ -3388,10 +3375,10 @@ RESPONSE:
+372.12345678
- aleandro@kub.info
+ leonor@will.name
registrar1
TEST-CREATOR
- 2015-06-02T14:33:37Z
+ 2015-06-09T13:35:06Z
password
@@ -3404,7 +3391,7 @@ RESPONSE:
ABC-12345
- ccReg-2074917129
+ ccReg-9535929548
@@ -3420,7 +3407,7 @@ REQUEST:
- FIRST0:SH946374880
+ FIRST0:SH522141680
wrong-pw
@@ -3442,11 +3429,11 @@ RESPONSE:
- FIRST0:SH946374880
+ FIRST0:SH522141680
EIS-1
- Kurt Schimmel0
+ Glenna Rodriguez0
Short street 11
Tallinn
@@ -3456,10 +3443,10 @@ RESPONSE:
+372.12345678
- aleandro@kub.info
+ leonor@will.name
registrar1
TEST-CREATOR
- 2015-06-02T14:33:33Z
+ 2015-06-09T13:35:02Z
password
@@ -3472,7 +3459,7 @@ RESPONSE:
ABC-12345
- ccReg-2944934209
+ ccReg-5851120895
@@ -3514,7 +3501,7 @@ RESPONSE:
EIS-32
- Freeda Kertzmann15
+ Vita Conn15
Short street 11
Tallinn
@@ -3524,10 +3511,10 @@ RESPONSE:
+372.12345678
- aleandro@kub.info
+ leonor@will.name
fixed registrar
TEST-CREATOR
- 2015-06-02T14:33:37Z
+ 2015-06-09T13:35:07Z
password
@@ -3540,7 +3527,7 @@ RESPONSE:
ABC-12345
- ccReg-9319680654
+ ccReg-7127496161
@@ -3568,7 +3555,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -3588,7 +3575,7 @@ RESPONSE:
ABC-12345
- ccReg-5256267515
+ ccReg-7540399431
@@ -3602,7 +3589,7 @@ REQUEST:
- FIRST0:SH946374880
+ FIRST0:SH522141680
password
@@ -3624,11 +3611,11 @@ RESPONSE:
- FIRST0:SH946374880
+ FIRST0:SH522141680
EIS-1
- Kurt Schimmel0
+ Glenna Rodriguez0
Short street 11
Tallinn
@@ -3638,10 +3625,10 @@ RESPONSE:
+372.12345678
- aleandro@kub.info
+ leonor@will.name
registrar1
TEST-CREATOR
- 2015-06-02T14:33:33Z
+ 2015-06-09T13:35:02Z
password
@@ -3654,7 +3641,7 @@ RESPONSE:
ABC-12345
- ccReg-9855190337
+ ccReg-0525250194
@@ -3680,7 +3667,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -3700,7 +3687,7 @@ RESPONSE:
ABC-12345
- ccReg-7982342225
+ ccReg-7972058559
@@ -3728,7 +3715,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -3748,7 +3735,7 @@ RESPONSE:
ABC-12345
- ccReg-7845786975
+ ccReg-5295218109
@@ -3762,7 +3749,7 @@ REQUEST:
- FIRST0:SH946374880
+ FIRST0:SH522141680
wrong-pw
@@ -3784,7 +3771,7 @@ RESPONSE:
ABC-12345
- ccReg-8286790305
+ ccReg-2721799743
@@ -3810,7 +3797,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -3830,7 +3817,7 @@ RESPONSE:
ABC-12345
- ccReg-7742830004
+ ccReg-7900677908
@@ -3858,7 +3845,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -3878,7 +3865,7 @@ RESPONSE:
ABC-12345
- ccReg-1203730643
+ ccReg-2025467741
@@ -3892,7 +3879,7 @@ REQUEST:
- FIRST0:SH946374880
+ FIRST0:SH522141680
@@ -3914,20 +3901,20 @@ RESPONSE:
- FIRST0:SH946374880
+ FIRST0:SH522141680
EIS-1
- Kurt Schimmel0
+ Glenna Rodriguez0
registrar1
TEST-CREATOR
- 2015-06-02T14:33:33Z
+ 2015-06-09T13:35:02Z
ABC-12345
- ccReg-9164005912
+ ccReg-0855652773
@@ -3953,7 +3940,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -3973,7 +3960,7 @@ RESPONSE:
ABC-12345
- ccReg-6014474598
+ ccReg-9987714322
@@ -3999,7 +3986,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -4019,7 +4006,7 @@ RESPONSE:
ABC-12345
- ccReg-3586501704
+ ccReg-6892625773
@@ -4035,7 +4022,7 @@ REQUEST:
- example97979453077790513.ee
+ example91588315934959266.ee
1
@@ -4062,7 +4049,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -4091,7 +4078,7 @@ RESPONSE:
ABC-12345
- ccReg-8936253286
+ ccReg-2349612398
@@ -4135,7 +4122,7 @@ RESPONSE:
ABC-12345
- ccReg-3102704443
+ ccReg-9853411463
@@ -4151,7 +4138,7 @@ REQUEST:
- example48653744161833001.ee
+ example88587443778107315.ee
1
@@ -4178,7 +4165,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -4198,14 +4185,14 @@ RESPONSE:
- example48653744161833001.ee
- 2015-06-02T14:33:38Z
- 2016-06-02T00:00:00Z
+ example88587443778107315.ee
+ 2015-06-09T13:35:08Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-9286293243
+ ccReg-9132828454
@@ -4221,7 +4208,7 @@ REQUEST:
- example66817551944190561.ee
+ example73660363443468993.ee
1
@@ -4240,7 +4227,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -4260,14 +4247,14 @@ RESPONSE:
- example66817551944190561.ee
- 2015-06-02T14:33:38Z
- 2016-06-02T00:00:00Z
+ example73660363443468993.ee
+ 2015-06-09T13:35:08Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-6995988129
+ ccReg-5445240509
@@ -4283,14 +4270,14 @@ REQUEST:
- example82402742861508907.ee
+ example45967197261666767.ee
1
- ns1.example82402742861508907.ee
+ ns1.example45967197261666767.ee
- ns2.example82402742861508907.ee
+ ns2.example45967197261666767.ee
FIXED:CITIZEN_1234
@@ -4308,7 +4295,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -4328,7 +4315,7 @@ RESPONSE:
ABC-12345
- ccReg-9037419208
+ ccReg-9776897906
@@ -4371,7 +4358,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -4391,7 +4378,7 @@ RESPONSE:
ABC-12345
- ccReg-3085886901
+ ccReg-8085685328
@@ -4434,7 +4421,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -4457,7 +4444,7 @@ RESPONSE:
ABC-12345
- ccReg-7084968793
+ ccReg-1616314093
@@ -4473,7 +4460,7 @@ REQUEST:
- example13970338235947248.ee
+ example51218410286428898.ee
1
@@ -4496,7 +4483,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -4516,7 +4503,7 @@ RESPONSE:
ABC-12345
- ccReg-9708640722
+ ccReg-9595496085
@@ -4532,7 +4519,7 @@ REQUEST:
- example36404812133760036.ee
+ example81238298722551606.ee
1
FIXED:CITIZEN_1234
FIXED:SH8013
@@ -4549,7 +4536,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -4572,7 +4559,7 @@ RESPONSE:
ABC-12345
- ccReg-6232255185
+ ccReg-4717587446
@@ -4588,7 +4575,7 @@ REQUEST:
- example64818663597612903.ee
+ example35661668130917692.ee
1
@@ -4649,7 +4636,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -4669,7 +4656,7 @@ RESPONSE:
ABC-12345
- ccReg-0166668620
+ ccReg-5395336747
@@ -4685,7 +4672,7 @@ REQUEST:
- example466056723821534.ee
+ example66681176556204482.ee
1
@@ -4710,7 +4697,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -4739,7 +4726,7 @@ RESPONSE:
ABC-12345
- ccReg-6405494345
+ ccReg-8130865988
@@ -4755,7 +4742,7 @@ REQUEST:
- example99592330630112280.ee
+ example51339946623003673.ee
1
ns1.example.ee
@@ -4776,7 +4763,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -4796,7 +4783,7 @@ RESPONSE:
ABC-12345
- ccReg-8841286613
+ ccReg-9672627361
@@ -4812,7 +4799,7 @@ REQUEST:
- example83128312703818883.ee
+ example91076929013183230.ee
1
@@ -4834,7 +4821,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -4854,14 +4841,14 @@ RESPONSE:
- example83128312703818883.ee
- 2015-06-02T14:33:39Z
- 2016-06-02T00:00:00Z
+ example91076929013183230.ee
+ 2015-06-09T13:35:09Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-7686175512
+ ccReg-4923492279
@@ -4877,7 +4864,7 @@ REQUEST:
- example95662100754576979.ee
+ example18617653120057707.ee
1
@@ -4899,7 +4886,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -4928,7 +4915,7 @@ RESPONSE:
ABC-12345
- ccReg-8065017773
+ ccReg-5409280454
@@ -4944,7 +4931,7 @@ REQUEST:
- example31948540706621474.ee
+ example68800472043009362.ee
1
@@ -4971,7 +4958,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -4991,14 +4978,14 @@ RESPONSE:
- example31948540706621474.ee
- 2015-06-02T14:33:39Z
- 2016-06-02T00:00:00Z
+ example68800472043009362.ee
+ 2015-06-09T13:35:09Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-6969997272
+ ccReg-1736181196
@@ -5014,7 +5001,7 @@ REQUEST:
- example55223163817914543.ee
+ example87051948037703744.ee
367
@@ -5041,7 +5028,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -5056,7 +5043,7 @@ RESPONSE:
-
+
Period must add up to 1, 2 or 3 years [period]
367
@@ -5064,7 +5051,7 @@ RESPONSE:
ABC-12345
- ccReg-1469657787
+ ccReg-9590604530
@@ -5080,7 +5067,7 @@ REQUEST:
- example82050076629523994.ee
+ example36864890279387815.ee
1
@@ -5119,7 +5106,7 @@ REQUEST:
841936717ae427ace63c28d04918569a841936717ae427ace63c28d0
-
+
dGVzdCBmYWlsCg==
@@ -5139,14 +5126,14 @@ RESPONSE:
- example82050076629523994.ee
- 2015-06-02T14:33:39Z
- 2016-06-02T00:00:00Z
+ example36864890279387815.ee
+ 2015-06-09T13:35:09Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-1291527721
+ ccReg-1288144705
@@ -5162,7 +5149,7 @@ REQUEST:
- example88380998944355738.ee
+ example39071265493646453.ee
1
@@ -5201,7 +5188,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -5257,7 +5244,7 @@ RESPONSE:
ABC-12345
- ccReg-2996508750
+ ccReg-9864309294
@@ -5273,7 +5260,7 @@ REQUEST:
- example78024773592821660.ee
+ example18491499730582362.ee
1
@@ -5306,7 +5293,7 @@ REQUEST:
700b97b591ed27ec2590d19f06f88bba700b97b591ed27ec2590d19f
-
+
dGVzdCBmYWlsCg==
@@ -5329,7 +5316,7 @@ RESPONSE:
ABC-12345
- ccReg-3990884046
+ ccReg-2192007981
@@ -5345,7 +5332,7 @@ REQUEST:
- example62588279782335028.ee
+ example66559588729638958.ee
1
@@ -5378,7 +5365,7 @@ REQUEST:
700b97b591ed27ec2590d19f06f88bba700b97b591ed27ec2590d19f
-
+
dGVzdCBmYWlsCg==
@@ -5398,7 +5385,7 @@ RESPONSE:
ABC-12345
- ccReg-9057177563
+ ccReg-4847742035
@@ -5414,7 +5401,7 @@ REQUEST:
- example23779866043469851.ee
+ example22898155503017574.ee
1
@@ -5441,7 +5428,7 @@ REQUEST:
49FD46E6C4B45C55D4AC
-
+
dGVzdCBmYWlsCg==
@@ -5461,14 +5448,14 @@ RESPONSE:
- example23779866043469851.ee
- 2015-06-02T14:33:40Z
- 2016-06-02T00:00:00Z
+ example22898155503017574.ee
+ 2015-06-09T13:35:10Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-1959065324
+ ccReg-4159358954
@@ -5484,7 +5471,7 @@ REQUEST:
- example90731484534199208.ee
+ example93371801004091502.ee
1
@@ -5517,7 +5504,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -5537,14 +5524,14 @@ RESPONSE:
- example90731484534199208.ee
- 2015-06-02T14:33:40Z
- 2016-06-02T00:00:00Z
+ example93371801004091502.ee
+ 2015-06-09T13:35:10Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-3315923078
+ ccReg-6695099772
@@ -5560,7 +5547,7 @@ REQUEST:
- example6010525958819346.ee
+ example12735328018526926.ee
1
@@ -5593,7 +5580,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -5613,7 +5600,7 @@ RESPONSE:
ABC-12345
- ccReg-6597744146
+ ccReg-8740184960
@@ -5629,7 +5616,7 @@ REQUEST:
- example14316008823537053.ee
+ example37484341016948997.ee
1
@@ -5656,7 +5643,7 @@ REQUEST:
700b97b591ed27ec2590d19f06f88bba700b97b591ed27ec2590d19f
-
+
dGVzdCBmYWlsCg==
@@ -5676,7 +5663,7 @@ RESPONSE:
ABC-12345
- ccReg-0772908747
+ ccReg-0475649404
@@ -5692,7 +5679,7 @@ REQUEST:
- example9010839918822151.ee
+ example65526473926412582.ee
1
@@ -5725,7 +5712,7 @@ REQUEST:
700b97b591ed27ec2590d19f06f88bba700b97b591ed27ec2590d19f
-
+
dGVzdCBmYWlsCg==
@@ -5745,7 +5732,7 @@ RESPONSE:
ABC-12345
- ccReg-1833299590
+ ccReg-7100299923
@@ -5761,7 +5748,7 @@ REQUEST:
- example9990759274413940.ee
+ example78026133095084710.ee
1
@@ -5786,7 +5773,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -5806,14 +5793,14 @@ RESPONSE:
- example9990759274413940.ee
- 2015-06-02T14:33:40Z
- 2016-06-02T00:00:00Z
+ example78026133095084710.ee
+ 2015-06-09T13:35:11Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-6732223093
+ ccReg-2454407279
@@ -5829,7 +5816,7 @@ REQUEST:
- example39274446147988090.ee
+ example41930352101887884.ee
1
@@ -5854,7 +5841,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -5874,7 +5861,7 @@ RESPONSE:
ABC-12345
- ccReg-6391772176
+ ccReg-9294506416
@@ -5890,7 +5877,7 @@ REQUEST:
- example16815979329457392.ee
+ example85983523795002436.ee
1
@@ -5915,7 +5902,7 @@ REQUEST:
AwEAAddt2AkLfYGKgiEZB5SmIF8EvrjxNMH6HtxWEA4RJ9Ao6LCWheg8
-
+
dGVzdCBmYWlsCg==
@@ -5938,7 +5925,7 @@ RESPONSE:
ABC-12345
- ccReg-3306715686
+ ccReg-2050006341
@@ -5966,7 +5953,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -5986,7 +5973,7 @@ RESPONSE:
ABC-12345
- ccReg-4123563386
+ ccReg-3630887004
@@ -6002,12 +5989,12 @@ REQUEST:
domain1.ee
- 7e7586cd94b553f5a07d6d8aa45d644f
+ 7c95ab44ddb7b8fbd24ddd824a51e0c3
-
+
dGVzdCBmYWlsCg==
@@ -6030,15 +6017,15 @@ RESPONSE:
domain1.ee
serverApproved
REGDOMAIN2
- 2015-06-02T14:33:41Z
+ 2015-06-09T13:35:11Z
REGDOMAIN1
- 2015-06-02T14:33:41Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:11Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-8723385830
+ ccReg-4845884753
@@ -6064,7 +6051,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -6084,7 +6071,7 @@ RESPONSE:
ABC-12345
- ccReg-5383535423
+ ccReg-6027661598
@@ -6112,23 +6099,23 @@ RESPONSE:
Command completed successfully; ack to dequeue
- 2015-06-02T14:33:41Z
- Domain transfer was approved, associated contacts are: ["REGDOMAIN2:758A573F", "REGDOMAIN2:ED05964C"]
+ 2015-06-09T13:35:11Z
+ Domain transfer was approved, associated contacts are: ["REGDOMAIN2:12678077", "REGDOMAIN2:BC591945"]
domain1.ee
serverApproved
REGDOMAIN2
- 2015-06-02T14:33:41Z
+ 2015-06-09T13:35:11Z
REGDOMAIN1
- 2015-06-02T14:33:41Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:11Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-2621052839
+ ccReg-6267575862
@@ -6144,12 +6131,12 @@ REQUEST:
domain1.ee
- e6e69f7fe16e4e106d6731a4015377b0
+ aa12394ccd4a052a6a4c18662d13741f
-
+
dGVzdCBmYWlsCg==
@@ -6172,15 +6159,15 @@ RESPONSE:
domain1.ee
pending
REGDOMAIN1
- 2015-06-02T14:33:41Z
+ 2015-06-09T13:35:12Z
REGDOMAIN2
- 2015-06-02T15:33:41Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T14:35:12Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-0830742222
+ ccReg-0051747515
@@ -6196,12 +6183,12 @@ REQUEST:
domain1.ee
- e6e69f7fe16e4e106d6731a4015377b0
+ aa12394ccd4a052a6a4c18662d13741f
-
+
dGVzdCBmYWlsCg==
@@ -6224,15 +6211,15 @@ RESPONSE:
domain1.ee
pending
REGDOMAIN1
- 2015-06-02T14:33:41Z
+ 2015-06-09T13:35:12Z
REGDOMAIN2
- 2015-06-02T15:33:41Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T14:35:12Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-9024073555
+ ccReg-5936426224
@@ -6258,7 +6245,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -6278,7 +6265,7 @@ RESPONSE:
ABC-12345
- ccReg-9937559312
+ ccReg-0332435010
@@ -6306,7 +6293,7 @@ RESPONSE:
Command completed successfully; ack to dequeue
- 2015-06-02T14:33:41Z
+ 2015-06-09T13:35:12Z
Transfer requested.
@@ -6314,15 +6301,15 @@ RESPONSE:
domain1.ee
pending
REGDOMAIN1
- 2015-06-02T14:33:41Z
+ 2015-06-09T13:35:12Z
REGDOMAIN2
- 2015-06-02T15:33:41Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T14:35:12Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-7780959753
+ ccReg-9686108853
@@ -6348,7 +6335,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -6368,7 +6355,7 @@ RESPONSE:
ABC-12345
- ccReg-2246481184
+ ccReg-1971378780
@@ -6394,7 +6381,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -6414,7 +6401,7 @@ RESPONSE:
ABC-12345
- ccReg-1396088307
+ ccReg-9221863536
@@ -6444,7 +6431,7 @@ RESPONSE:
ABC-12345
- ccReg-6864941546
+ ccReg-9413058225
@@ -6470,7 +6457,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -6490,7 +6477,7 @@ RESPONSE:
ABC-12345
- ccReg-9877149049
+ ccReg-7644358797
@@ -6518,7 +6505,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -6538,7 +6525,7 @@ RESPONSE:
ABC-12345
- ccReg-8299015369
+ ccReg-2450097587
@@ -6554,12 +6541,12 @@ REQUEST:
domain2.ee
- 4b6cfd8eac3aa625abcd2701cdab992e
+ 49119fd563d3a8cf29173ec06c8c0f3e
-
+
dGVzdCBmYWlsCg==
@@ -6582,15 +6569,15 @@ RESPONSE:
domain2.ee
pending
REGDOMAIN2
- 2015-06-02T14:33:42Z
+ 2015-06-09T13:35:12Z
REGDOMAIN1
- 2015-06-02T15:33:42Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T14:35:12Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-7619243484
+ ccReg-9192420144
@@ -6616,7 +6603,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -6636,7 +6623,7 @@ RESPONSE:
ABC-12345
- ccReg-1996107650
+ ccReg-7113638053
@@ -6662,7 +6649,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -6682,7 +6669,7 @@ RESPONSE:
ABC-12345
- ccReg-0249347226
+ ccReg-4435545954
@@ -6698,12 +6685,12 @@ REQUEST:
domain2.ee
- 4b6cfd8eac3aa625abcd2701cdab992e
+ 49119fd563d3a8cf29173ec06c8c0f3e
-
+
dGVzdCBmYWlsCg==
@@ -6726,15 +6713,15 @@ RESPONSE:
domain2.ee
pending
REGDOMAIN2
- 2015-06-02T14:33:42Z
+ 2015-06-09T13:35:12Z
REGDOMAIN1
- 2015-06-02T15:33:42Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T14:35:12Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-4125354250
+ ccReg-5350438744
@@ -6760,7 +6747,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -6780,7 +6767,7 @@ RESPONSE:
ABC-12345
- ccReg-2686066388
+ ccReg-1768049326
@@ -6808,7 +6795,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -6828,7 +6815,7 @@ RESPONSE:
ABC-12345
- ccReg-3853305583
+ ccReg-8477134221
@@ -6844,7 +6831,7 @@ REQUEST:
domain3.ee
- fbc72d17f1d36f777dae6b2b13596d78
+ 51fdb054ca81b48c784703b3007fb902
@@ -6867,15 +6854,15 @@ RESPONSE:
domain3.ee
serverApproved
REGDOMAIN2
- 2015-06-02T14:33:42Z
+ 2015-06-09T13:35:13Z
REGDOMAIN1
- 2015-06-02T14:33:42Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:13Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-3487001485
+ ccReg-4272425018
@@ -6901,7 +6888,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -6921,7 +6908,7 @@ RESPONSE:
ABC-12345
- ccReg-6417869434
+ ccReg-3422507656
@@ -6949,7 +6936,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -6969,7 +6956,7 @@ RESPONSE:
ABC-12345
- ccReg-1335168095
+ ccReg-2514623987
@@ -6985,7 +6972,7 @@ REQUEST:
domain4.ee
- 0221135c2fb643b574986c2af1a8cb9f
+ 32caa3d35a7a4e64050518940b4e85d2
@@ -7008,15 +6995,15 @@ RESPONSE:
domain4.ee
serverApproved
REGDOMAIN2
- 2015-06-02T14:33:43Z
+ 2015-06-09T13:35:14Z
REGDOMAIN1
- 2015-06-02T14:33:43Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:14Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-1484348708
+ ccReg-7921466540
@@ -7042,7 +7029,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7062,7 +7049,7 @@ RESPONSE:
ABC-12345
- ccReg-4456747164
+ ccReg-1992215416
@@ -7090,7 +7077,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7110,7 +7097,7 @@ RESPONSE:
ABC-12345
- ccReg-6378968609
+ ccReg-8791359182
@@ -7126,7 +7113,7 @@ REQUEST:
domain5.ee
- 8762d1f1c64594a5b80e5b1a68b5dc58
+ 9b6d631ee41487a0801fc97130c17e3f
@@ -7149,15 +7136,15 @@ RESPONSE:
domain5.ee
serverApproved
REGDOMAIN2
- 2015-06-02T14:33:43Z
+ 2015-06-09T13:35:14Z
REGDOMAIN1
- 2015-06-02T14:33:43Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:14Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-4043670156
+ ccReg-1755420419
@@ -7183,7 +7170,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7203,7 +7190,7 @@ RESPONSE:
ABC-12345
- ccReg-8973567200
+ ccReg-1391070303
@@ -7231,7 +7218,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7251,7 +7238,7 @@ RESPONSE:
ABC-12345
- ccReg-9166329529
+ ccReg-9668986749
@@ -7267,7 +7254,7 @@ REQUEST:
domain8.ee
- 723383e28c2a831f8cd05d47a6fdae6a
+ 8dec605a63ba1bc7a41cf43bd3c5b939
@@ -7290,15 +7277,15 @@ RESPONSE:
domain8.ee
serverApproved
REGDOMAIN2
- 2015-06-02T14:33:44Z
+ 2015-06-09T13:35:15Z
REGDOMAIN1
- 2015-06-02T14:33:44Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:15Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-9917679448
+ ccReg-6752080335
@@ -7324,7 +7311,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7344,7 +7331,7 @@ RESPONSE:
ABC-12345
- ccReg-5483450921
+ ccReg-4961459242
@@ -7372,7 +7359,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7392,7 +7379,7 @@ RESPONSE:
ABC-12345
- ccReg-0451723771
+ ccReg-1514278604
@@ -7408,7 +7395,7 @@ REQUEST:
domain9.ee
- c1f7bdb825982a7d1da9170ef3721274
+ 48229ccbb351974763a0084444da2d69
@@ -7431,15 +7418,15 @@ RESPONSE:
domain9.ee
serverApproved
REGDOMAIN2
- 2015-06-02T14:33:44Z
+ 2015-06-09T13:35:16Z
REGDOMAIN1
- 2015-06-02T14:33:44Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:16Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-9585905070
+ ccReg-5794589966
@@ -7465,7 +7452,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7485,7 +7472,7 @@ RESPONSE:
ABC-12345
- ccReg-3585610255
+ ccReg-7229701658
@@ -7513,7 +7500,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7533,7 +7520,7 @@ RESPONSE:
ABC-12345
- ccReg-2766683979
+ ccReg-0486061738
@@ -7549,7 +7536,7 @@ REQUEST:
domain11.ee
- f6a02211d0c8ff3abdf3aa1e7b37f174
+ a45fcd5f7412dc557c0f6d560869e2c6
@@ -7572,15 +7559,15 @@ RESPONSE:
domain11.ee
serverApproved
REGDOMAIN2
- 2015-06-02T14:33:45Z
+ 2015-06-09T13:35:17Z
REGDOMAIN1
- 2015-06-02T14:33:45Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:17Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-0499694005
+ ccReg-5958206148
@@ -7606,7 +7593,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7626,7 +7613,7 @@ RESPONSE:
ABC-12345
- ccReg-2413360344
+ ccReg-7884589827
@@ -7654,7 +7641,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7674,7 +7661,7 @@ RESPONSE:
ABC-12345
- ccReg-6430571545
+ ccReg-7058632457
@@ -7690,7 +7677,7 @@ REQUEST:
domain14.ee
- c1c20e74faf394a064622007e2c4e817
+ 27888ec6ac2bb01ec2d89c2eb0cab425
@@ -7713,15 +7700,15 @@ RESPONSE:
domain14.ee
serverApproved
REGDOMAIN2
- 2015-06-02T14:33:45Z
+ 2015-06-09T13:35:17Z
REGDOMAIN1
- 2015-06-02T14:33:45Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:17Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-1645698502
+ ccReg-0771985165
@@ -7747,7 +7734,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7767,7 +7754,7 @@ RESPONSE:
ABC-12345
- ccReg-8777538869
+ ccReg-0861400727
@@ -7795,7 +7782,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7815,7 +7802,7 @@ RESPONSE:
ABC-12345
- ccReg-5887352110
+ ccReg-9468432300
@@ -7831,7 +7818,7 @@ REQUEST:
domain15.ee
- 8b2b1a7aad43d979486245b9d0ff473b
+ 492032b2f43296908f801363ed351354
@@ -7854,15 +7841,15 @@ RESPONSE:
domain15.ee
serverApproved
REGDOMAIN2
- 2015-06-02T14:33:46Z
+ 2015-06-09T13:35:18Z
REGDOMAIN1
- 2015-06-02T14:33:46Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:18Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-9002038233
+ ccReg-5495575753
@@ -7888,7 +7875,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7908,7 +7895,7 @@ RESPONSE:
ABC-12345
- ccReg-4427386119
+ ccReg-3158070116
@@ -7936,7 +7923,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -7956,7 +7943,7 @@ RESPONSE:
ABC-12345
- ccReg-4954325500
+ ccReg-2506492481
@@ -7992,7 +7979,7 @@ RESPONSE:
ABC-12345
- ccReg-0070482481
+ ccReg-6601704030
@@ -8018,7 +8005,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -8038,7 +8025,7 @@ RESPONSE:
ABC-12345
- ccReg-0244475517
+ ccReg-0595382076
@@ -8056,12 +8043,12 @@ REQUEST:
domain17.ee
- 15af0f0a594f1941ebdee1c246662730
+ 5b7df3cd88f3d95c94f0708db2e4e561
-
+
dGVzdCBmYWlsCg==
@@ -8084,15 +8071,15 @@ RESPONSE:
domain17.ee
clientApproved
REGDOMAIN2
- 2015-06-02T14:33:46Z
+ 2015-06-09T13:35:19Z
REGDOMAIN1
- 2015-06-02T14:33:46Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:19Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-0409704363
+ ccReg-3523421868
@@ -8120,7 +8107,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -8140,7 +8127,7 @@ RESPONSE:
ABC-12345
- ccReg-9977243825
+ ccReg-3805662291
@@ -8156,12 +8143,12 @@ REQUEST:
domain18.ee
- 1acbd83c6c9bf4d5b3b5996f84ecc95e
+ 4c64854d5e6f4eabf96e9e8c99f9bc8e
-
+
dGVzdCBmYWlsCg==
@@ -8181,7 +8168,7 @@ RESPONSE:
ABC-12345
- ccReg-2167790493
+ ccReg-0487201599
@@ -8207,7 +8194,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -8227,7 +8214,7 @@ RESPONSE:
ABC-12345
- ccReg-7318846508
+ ccReg-1828323029
@@ -8243,12 +8230,12 @@ REQUEST:
domain18.ee
- 1acbd83c6c9bf4d5b3b5996f84ecc95e
+ 4c64854d5e6f4eabf96e9e8c99f9bc8e
-
+
dGVzdCBmYWlsCg==
@@ -8271,15 +8258,15 @@ RESPONSE:
domain18.ee
clientRejected
REGDOMAIN2
- 2015-06-02T14:33:47Z
+ 2015-06-09T13:35:19Z
REGDOMAIN1
- 2015-06-02T14:33:47Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:19Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-5500355407
+ ccReg-7304123801
@@ -8307,7 +8294,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -8327,7 +8314,7 @@ RESPONSE:
ABC-12345
- ccReg-6363376009
+ ccReg-5338732279
@@ -8343,12 +8330,12 @@ REQUEST:
domain19.ee
- a870b5d70e38d38576944360c17d9cec
+ d5fa140fce838bfef2aec37dfcb4fe96
-
+
dGVzdCBmYWlsCg==
@@ -8368,7 +8355,7 @@ RESPONSE:
ABC-12345
- ccReg-8901648621
+ ccReg-9704820670
@@ -8394,7 +8381,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -8414,7 +8401,7 @@ RESPONSE:
ABC-12345
- ccReg-1238161989
+ ccReg-3585177632
@@ -8437,7 +8424,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -8457,7 +8444,7 @@ RESPONSE:
ABC-12345
- ccReg-7376446516
+ ccReg-5275624295
@@ -8475,12 +8462,12 @@ REQUEST:
domain21.ee
- 0d3a2916ece6b0c50896ab5d15367590
+ 9690e0869e4ce68710789f3e134cf1fd
-
+
dGVzdCBmYWlsCg==
@@ -8500,7 +8487,7 @@ RESPONSE:
ABC-12345
- ccReg-3149883241
+ ccReg-6411780105
@@ -8516,7 +8503,7 @@ REQUEST:
- example20038696444836827.ee
+ example7095398536058632.ee
98oiewslkfkd
@@ -8538,7 +8525,7 @@ RESPONSE:
ABC-12345
- ccReg-7463389906
+ ccReg-2738644675
@@ -8566,7 +8553,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -8586,7 +8573,7 @@ RESPONSE:
ABC-12345
- ccReg-5292990151
+ ccReg-1917537331
@@ -8602,12 +8589,12 @@ REQUEST:
domain22.ee
- 214caf4bb5bc9d803458b69400c8072e
+ 018fad6cc883c4574c2f9c105a8f55f2
-
+
dGVzdCBmYWlsCg==
@@ -8630,15 +8617,15 @@ RESPONSE:
domain22.ee
serverApproved
REGDOMAIN2
- 2015-06-02T14:33:47Z
+ 2015-06-09T13:35:20Z
REGDOMAIN1
- 2015-06-02T14:33:47Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:20Z
+ 2016-06-09T00:00:00Z
ABC-12345
- ccReg-3677521670
+ ccReg-2485066259
@@ -8654,12 +8641,12 @@ REQUEST:
domain22.ee
- 214caf4bb5bc9d803458b69400c8072e
+ 018fad6cc883c4574c2f9c105a8f55f2
-
+
dGVzdCBmYWlsCg==
@@ -8679,7 +8666,7 @@ RESPONSE:
ABC-12345
- ccReg-4802342583
+ ccReg-4023477401
@@ -8705,7 +8692,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -8725,7 +8712,7 @@ RESPONSE:
ABC-12345
- ccReg-3924775811
+ ccReg-0702953091
@@ -8743,12 +8730,12 @@ REQUEST:
domain23.ee
- cc0c225abd7c98fe19ae72398601bb8a
+ 113b8ca05f352d6415864ae74b179e27
-
+
dGVzdCBmYWlsCg==
@@ -8768,7 +8755,7 @@ RESPONSE:
ABC-12345
- ccReg-4544248429
+ ccReg-8973907256
@@ -8792,7 +8779,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -8812,7 +8799,7 @@ RESPONSE:
ABC-12345
- ccReg-6875798999
+ ccReg-0699779367
@@ -8836,7 +8823,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -8856,7 +8843,7 @@ RESPONSE:
ABC-12345
- ccReg-3305778113
+ ccReg-9569141673
@@ -8876,13 +8863,13 @@ REQUEST:
- ns.bartell80.ee
+ ns.gerlach80.ee
- ns.jones79.ee
+ ns.gislason79.ee
- ns.powlowski78.ee
+ ns.raudicki78.ee
@@ -8893,7 +8880,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -8913,7 +8900,7 @@ RESPONSE:
ABC-12345
- ccReg-0383550395
+ ccReg-7428686694
@@ -8937,7 +8924,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -8957,7 +8944,7 @@ RESPONSE:
ABC-12345
- ccReg-6286875915
+ ccReg-5062997610
@@ -8981,7 +8968,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -9001,7 +8988,7 @@ RESPONSE:
ABC-12345
- ccReg-8121147429
+ ccReg-4183270102
@@ -9070,7 +9057,7 @@ RESPONSE:
ABC-12345
- ccReg-8658915093
+ ccReg-0908697631
@@ -9134,7 +9121,7 @@ RESPONSE:
ABC-12345
- ccReg-8578037457
+ ccReg-3645000434
@@ -9237,7 +9224,7 @@ RESPONSE:
ABC-12345
- ccReg-7566265707
+ ccReg-0427900366
@@ -9289,7 +9276,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -9312,7 +9299,7 @@ RESPONSE:
ABC-12345
- ccReg-5950602333
+ ccReg-6405862159
@@ -9362,7 +9349,7 @@ REQUEST:
-
+
dGVzdCBmYWlsCg==
@@ -9382,7 +9369,7 @@ RESPONSE:
ABC-12345
- ccReg-7328085880
+ ccReg-1483674788
@@ -9421,7 +9408,7 @@ RESPONSE:
ABC-12345
- ccReg-7227191488
+ ccReg-2790531169
@@ -9487,7 +9474,7 @@ RESPONSE:
ABC-12345
- ccReg-8437379909
+ ccReg-6128830215
@@ -9541,7 +9528,7 @@ RESPONSE:
ABC-12345
- ccReg-9283346447
+ ccReg-6041954324
@@ -9616,7 +9603,7 @@ RESPONSE:
ABC-12345
- ccReg-1720108341
+ ccReg-2902818089
@@ -9657,7 +9644,7 @@ RESPONSE:
ABC-12345
- ccReg-9356081676
+ ccReg-9736235378
@@ -9677,10 +9664,10 @@ REQUEST:
- ns.will99.ee
+ ns.pfannerstill99.ee
- FIXED:SH1116533879
+ FIXED:SH3939408879
@@ -9700,7 +9687,7 @@ RESPONSE:
ABC-12345
- ccReg-5974789134
+ ccReg-4517931115
@@ -9718,10 +9705,10 @@ REQUEST:
- ns.will99.ee
+ ns.pfannerstill99.ee
- FIXED:SH1116533879
+ FIXED:SH3939408879
@@ -9739,18 +9726,18 @@ RESPONSE:
Nameserver already exists on this domain [hostname]
- ns.will99.ee
+ ns.pfannerstill99.ee
Contact already exists on this domain [contact_code_cache]
- FIXED:SH1116533879
+ FIXED:SH3939408879
ABC-12345
- ccReg-8215045348
+ ccReg-2704659553
@@ -9788,7 +9775,7 @@ RESPONSE:
ABC-12345
- ccReg-7276382072
+ ccReg-2696599434
@@ -9829,7 +9816,7 @@ RESPONSE:
ABC-12345
- ccReg-5601896519
+ ccReg-7460834607
@@ -9846,7 +9833,7 @@ REQUEST:
domain37.ee
- 2016-06-02
+ 2015-06-19
1
@@ -9867,12 +9854,12 @@ RESPONSE:
domain37.ee
- 2017-06-02T00:00:00Z
+ 2016-06-19T00:00:00Z
ABC-12345
- ccReg-3668937945
+ ccReg-8242836147
@@ -9910,9 +9897,12 @@ RESPONSE:
2200-08-07
+
+ Object is not eligible for renewal
+
ABC-12345
- ccReg-8246202320
+ ccReg-3072263830
@@ -9929,7 +9919,7 @@ REQUEST:
domain39.ee
- 2016-06-02
+ 2015-06-19
4
@@ -9944,7 +9934,7 @@ RESPONSE:
-
+
Period must add up to 1, 2 or 3 years [period]
4
@@ -9952,7 +9942,257 @@ RESPONSE:
ABC-12345
- ccReg-5737709562
+ ccReg-4885665520
+
+
+
+```
+
+### EPP Domain with valid domain does not renew a domain unless less than 90 days till expiration
+
+REQUEST:
+
+```xml
+
+
+
+
+
+ domain40.ee
+ 2015-09-08
+ 1
+
+
+ ABC-12345
+
+
+```
+
+RESPONSE:
+
+```xml
+
+
+
+
+ Object is not eligible for renewal
+
+
+ ABC-12345
+ ccReg-2454866480
+
+
+
+```
+
+REQUEST:
+
+```xml
+
+
+
+
+
+ domain40.ee
+ 2015-09-07
+ 1
+
+
+ ABC-12345
+
+
+```
+
+RESPONSE:
+
+```xml
+
+
+
+
+ Command completed successfully
+
+
+
+ domain40.ee
+ 2016-09-07T00:00:00Z
+
+
+
+ ABC-12345
+ ccReg-6806426406
+
+
+
+```
+
+### EPP Domain with valid domain does not renew a domain unless less than 90 days till expiration
+
+REQUEST:
+
+```xml
+
+
+
+
+
+ domain41.ee
+ 2020-06-09
+ 1
+
+
+ ABC-12345
+
+
+```
+
+RESPONSE:
+
+```xml
+
+
+
+
+ Command completed successfully
+
+
+
+ domain41.ee
+ 2021-06-09T00:00:00Z
+
+
+
+ ABC-12345
+ ccReg-1945369881
+
+
+
+```
+
+### EPP Domain with valid domain does not renew foreign domain
+
+REQUEST:
+
+```xml
+
+
+
+
+ registrar2
+ ghyt9e4fu
+
+ 1.0
+ en
+
+
+ urn:ietf:params:xml:ns:domain-1.0
+ urn:ietf:params:xml:ns:contact-1.0
+ urn:ietf:params:xml:ns:host-1.0
+ urn:ietf:params:xml:ns:keyrelay-1.0
+
+ urn:ietf:params:xml:ns:secDNS-1.1
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
+
+
+
+ ABC-12345
+
+
+```
+
+RESPONSE:
+
+```xml
+
+
+
+
+ Command completed successfully
+
+
+ ABC-12345
+ ccReg-6743332594
+
+
+
+```
+
+REQUEST:
+
+```xml
+
+
+
+
+
+ domain42.ee
+ 2016-06-09
+ 1
+
+
+ ABC-12345
+
+
+```
+
+RESPONSE:
+
+```xml
+
+
+
+
+ Authorization error
+
+
+ ABC-12345
+ ccReg-4602142841
+
+
+
+```
+
+REQUEST:
+
+```xml
+
+
+
+
+ registrar1
+ ghyt9e4fu
+
+ 1.0
+ en
+
+
+ urn:ietf:params:xml:ns:domain-1.0
+ urn:ietf:params:xml:ns:contact-1.0
+ urn:ietf:params:xml:ns:host-1.0
+ urn:ietf:params:xml:ns:keyrelay-1.0
+
+ urn:ietf:params:xml:ns:secDNS-1.1
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
+
+
+
+ ABC-12345
+
+
+```
+
+RESPONSE:
+
+```xml
+
+
+
+
+ Command completed successfully
+
+
+ ABC-12345
+ ccReg-6797035397
@@ -9968,7 +10208,7 @@ REQUEST:
- domain40.ee
+ domain43.ee
2fooBAR
@@ -9989,23 +10229,23 @@ RESPONSE:
- domain40.ee
- EIS-48
+ domain43.ee
+ EIS-51
Payment overdue.
- FIXED:REGISTRANT8974289838
- FIXED:SH4849477194
- FIXED:SH9764958293
+ FIXED:REGISTRANT1981102141
+ FIXED:SH48717399100
+ FIXED:SH5539715299
- ns.littlewalter120.ee
+ ns.altenwerthmoen129.ee
192.168.1.1
- ns.upton121.ee
+ ns.feest130.ee
192.168.1.1
- ns.stroman122.ee
+ ns.wisozk131.ee
192.168.1.1
@@ -10015,11 +10255,11 @@ RESPONSE:
registrar1
- 2015-06-02T14:33:51Z
- 2015-06-02T14:33:51Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:26Z
+ 2015-06-09T13:35:26Z
+ 2016-06-09T00:00:00Z
- a55da6ecdfddd94d11ec0905cb8655de
+ 84918f4ccd2a17f3d6629664d1332bfb
@@ -10052,7 +10292,7 @@ RESPONSE:
- ccReg-0885097219
+ ccReg-2359454877
@@ -10066,7 +10306,7 @@ REQUEST:
- domain40.ee
+ domain43.ee
2fooBAR
@@ -10087,23 +10327,23 @@ RESPONSE:
- domain40.ee
- EIS-48
+ domain43.ee
+ EIS-51
Payment overdue.
- FIXED:REGISTRANT8974289838
- FIXED:SH4849477194
- FIXED:SH9764958293
+ FIXED:REGISTRANT1981102141
+ FIXED:SH48717399100
+ FIXED:SH5539715299
- ns.littlewalter120.ee
+ ns.altenwerthmoen129.ee
192.168.1.1
- ns.upton121.ee
+ ns.feest130.ee
192.168.1.1
- ns.stroman122.ee
+ ns.wisozk131.ee
192.168.1.1
@@ -10113,11 +10353,11 @@ RESPONSE:
registrar1
- 2015-06-02T14:33:51Z
- 2015-06-02T14:33:51Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:26Z
+ 2015-06-09T13:35:26Z
+ 2016-06-09T00:00:00Z
- a55da6ecdfddd94d11ec0905cb8655de
+ 84918f4ccd2a17f3d6629664d1332bfb
@@ -10150,7 +10390,7 @@ RESPONSE:
- ccReg-0658088724
+ ccReg-1608117363
@@ -10166,7 +10406,7 @@ REQUEST:
- domain41.ee
+ domain44.ee
2fooBAR
@@ -10186,7 +10426,7 @@ RESPONSE:
Attribute is invalid: hosts
- ccReg-3142249796
+ ccReg-6446829556
@@ -10200,7 +10440,7 @@ REQUEST:
- domain41.ee
+ domain44.ee
2fooBAR
@@ -10221,35 +10461,35 @@ RESPONSE:
- domain41.ee
- EIS-49
+ domain44.ee
+ EIS-52
- FIXED:REGISTRANT9162686239
- FIXED:SH7788334096
- FIXED:SH1740525895
+ FIXED:REGISTRANT2538462742
+ FIXED:SH20358083102
+ FIXED:SH68298371101
- ns1.domain41.ee
+ ns1.domain44.ee
192.168.1.1
1080:0:0:0:8:800:200C:417A
- ns2.domain41.ee
+ ns2.domain44.ee
192.168.1.1
1080:0:0:0:8:800:200C:417A
registrar1
- 2015-06-02T14:33:52Z
- 2015-06-02T14:33:52Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:26Z
+ 2015-06-09T13:35:26Z
+ 2016-06-09T00:00:00Z
- 5f736179dc1b98c7297181630045512a
+ 8a57799654416273f159076743c2a9be
- ccReg-3283683958
+ ccReg-2074255390
@@ -10263,7 +10503,7 @@ REQUEST:
- domain41.ee
+ domain44.ee
2fooBAR
@@ -10284,12 +10524,12 @@ RESPONSE:
- domain41.ee
- EIS-49
+ domain44.ee
+ EIS-52
- FIXED:REGISTRANT9162686239
- FIXED:SH7788334096
- FIXED:SH1740525895
+ FIXED:REGISTRANT2538462742
+ FIXED:SH20358083102
+ FIXED:SH68298371101
ns3.test.ee
@@ -10298,16 +10538,16 @@ RESPONSE:
registrar1
- 2015-06-02T14:33:52Z
- 2015-06-02T14:33:52Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:26Z
+ 2015-06-09T13:35:26Z
+ 2016-06-09T00:00:00Z
- 5f736179dc1b98c7297181630045512a
+ 8a57799654416273f159076743c2a9be
- ccReg-2854509297
+ ccReg-1252788467
@@ -10321,7 +10561,7 @@ REQUEST:
- domain41.ee
+ domain44.ee
2fooBAR
@@ -10342,23 +10582,23 @@ RESPONSE:
- domain41.ee
- EIS-49
+ domain44.ee
+ EIS-52
- FIXED:REGISTRANT9162686239
- FIXED:SH7788334096
- FIXED:SH1740525895
+ FIXED:REGISTRANT2538462742
+ FIXED:SH20358083102
+ FIXED:SH68298371101
registrar1
- 2015-06-02T14:33:52Z
- 2015-06-02T14:33:52Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:26Z
+ 2015-06-09T13:35:26Z
+ 2016-06-09T00:00:00Z
- 5f736179dc1b98c7297181630045512a
+ 8a57799654416273f159076743c2a9be
- ccReg-8226722399
+ ccReg-4063505362
@@ -10372,7 +10612,7 @@ REQUEST:
- domain41.ee
+ domain44.ee
2fooBAR
@@ -10393,20 +10633,20 @@ RESPONSE:
- domain41.ee
- EIS-49
+ domain44.ee
+ EIS-52
- FIXED:REGISTRANT9162686239
- FIXED:SH7788334096
- FIXED:SH1740525895
+ FIXED:REGISTRANT2538462742
+ FIXED:SH20358083102
+ FIXED:SH68298371101
- ns1.domain41.ee
+ ns1.domain44.ee
192.168.1.1
1080:0:0:0:8:800:200C:417A
- ns2.domain41.ee
+ ns2.domain44.ee
192.168.1.1
1080:0:0:0:8:800:200C:417A
@@ -10417,16 +10657,16 @@ RESPONSE:
registrar1
- 2015-06-02T14:33:52Z
- 2015-06-02T14:33:52Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:26Z
+ 2015-06-09T13:35:26Z
+ 2016-06-09T00:00:00Z
- 5f736179dc1b98c7297181630045512a
+ 8a57799654416273f159076743c2a9be
- ccReg-6981084869
+ ccReg-8078742562
@@ -10465,7 +10705,7 @@ RESPONSE:
- ccReg-1359177895
+ ccReg-3733145782
@@ -10481,7 +10721,7 @@ REQUEST:
- domain42.ee
+ domain45.ee
2fooBAR
@@ -10502,37 +10742,37 @@ RESPONSE:
- domain42.ee
- EIS-50
+ domain45.ee
+ EIS-53
- FIXED:REGISTRANT6447311340
- FIXED:SH0696214598
- FIXED:SH3579214897
+ FIXED:REGISTRANT8832143243
+ FIXED:SH58933945104
+ FIXED:SH99518073103
- ns.torphyswaniawski126.ee
+ ns.corwintillman135.ee
192.168.1.1
- ns.runolfsson127.ee
+ ns.ratke136.ee
192.168.1.1
- ns.pfannerstill128.ee
+ ns.mosciski137.ee
192.168.1.1
registrar1
- 2015-06-02T14:33:52Z
- 2015-06-02T14:33:52Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:27Z
+ 2015-06-09T13:35:27Z
+ 2016-06-09T00:00:00Z
- 24475eb76f7afbcbce6d58904499033c
+ 95ee364f84c0c78c3aa1182debf3b037
- ccReg-6787531410
+ ccReg-0047940693
@@ -10560,7 +10800,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -10580,7 +10820,7 @@ RESPONSE:
ABC-12345
- ccReg-5789785835
+ ccReg-9421122155
@@ -10594,7 +10834,7 @@ REQUEST:
- domain43.ee
+ domain46.ee
2fooBAR
@@ -10614,7 +10854,7 @@ RESPONSE:
Authorization error
- ccReg-8890052432
+ ccReg-5329739119
@@ -10640,7 +10880,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -10660,7 +10900,7 @@ RESPONSE:
ABC-12345
- ccReg-6132497444
+ ccReg-6610957083
@@ -10688,7 +10928,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -10708,7 +10948,7 @@ RESPONSE:
ABC-12345
- ccReg-6672790066
+ ccReg-9524991637
@@ -10722,7 +10962,7 @@ REQUEST:
- domain44.ee
+ domain47.ee
@@ -10740,34 +10980,34 @@ RESPONSE:
- domain44.ee
- EIS-52
+ domain47.ee
+ EIS-55
- FIXED:REGISTRANT0437071142
- FIXED:SH96779090102
- FIXED:SH52024319101
+ FIXED:REGISTRANT7670321945
+ FIXED:SH09858288108
+ FIXED:SH59385847107
- ns.hettingerankunding132.ee
+ ns.hanerosenbaum141.ee
192.168.1.1
- ns.jenkinshilll133.ee
+ ns.connelly142.ee
192.168.1.1
- ns.moore134.ee
+ ns.damore143.ee
192.168.1.1
registrar1
- 2015-06-02T14:33:52Z
- 2015-06-02T14:33:52Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:27Z
+ 2015-06-09T13:35:27Z
+ 2016-06-09T00:00:00Z
- ccReg-5470335926
+ ccReg-5471057688
@@ -10793,7 +11033,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -10813,7 +11053,7 @@ RESPONSE:
ABC-12345
- ccReg-7477648038
+ ccReg-3532068018
@@ -10841,7 +11081,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -10861,7 +11101,7 @@ RESPONSE:
ABC-12345
- ccReg-0189080988
+ ccReg-5772455955
@@ -10875,9 +11115,9 @@ REQUEST:
- domain45.ee
+ domain48.ee
- 3e1fb38b022d134ee01fb5a7fd0d22bd
+ 6c4c26a263fe5d8e287885476ba8338e
@@ -10896,37 +11136,37 @@ RESPONSE:
- domain45.ee
- EIS-53
+ domain48.ee
+ EIS-56
- FIXED:REGISTRANT0039423743
- FIXED:SH26361564104
- FIXED:SH08557300103
+ FIXED:REGISTRANT0112778446
+ FIXED:SH37596359110
+ FIXED:SH61483009109
- ns.will135.ee
+ ns.ondricka144.ee
192.168.1.1
- ns.oreilly136.ee
+ ns.christiansenwaters145.ee
192.168.1.1
- ns.kozey137.ee
+ ns.becker146.ee
192.168.1.1
registrar1
- 2015-06-02T14:33:53Z
- 2015-06-02T14:33:53Z
- 2016-06-02T00:00:00Z
+ 2015-06-09T13:35:27Z
+ 2015-06-09T13:35:27Z
+ 2016-06-09T00:00:00Z
- 3e1fb38b022d134ee01fb5a7fd0d22bd
+ 6c4c26a263fe5d8e287885476ba8338e
- ccReg-5317920253
+ ccReg-1408617959
@@ -10952,7 +11192,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -10972,7 +11212,7 @@ RESPONSE:
ABC-12345
- ccReg-8397152597
+ ccReg-8592985743
@@ -10988,11 +11228,11 @@ REQUEST:
- domain46.ee
+ domain49.ee
-
+
dGVzdCBmYWlsCg==
@@ -11012,7 +11252,7 @@ RESPONSE:
ABC-12345
- ccReg-7041717131
+ ccReg-6060925205
@@ -11028,11 +11268,11 @@ REQUEST:
- domain47.ee
+ domain50.ee
-
+
dGVzdCBmYWlsCg==
@@ -11052,7 +11292,7 @@ RESPONSE:
ABC-12345
- ccReg-4433625658
+ ccReg-8888267736
@@ -11068,11 +11308,11 @@ REQUEST:
- domain48.ee
+ domain51.ee
-
+
dGVzdCBmYWlsCg==
@@ -11092,7 +11332,7 @@ RESPONSE:
ABC-12345
- ccReg-0993946563
+ ccReg-0556716619
@@ -11127,7 +11367,7 @@ RESPONSE:
ABC-12345
- ccReg-0059261865
+ ccReg-8603034155
@@ -11169,7 +11409,7 @@ RESPONSE:
ABC-12345
- ccReg-0464564986
+ ccReg-0247924456
@@ -11183,7 +11423,7 @@ REQUEST:
- domain49.ee
+ domain52.ee
ABC-12345
@@ -11203,14 +11443,14 @@ RESPONSE:
- domain49.ee
+ domain52.ee
in use
ABC-12345
- ccReg-9143909071
+ ccReg-5398244838
@@ -11260,7 +11500,7 @@ RESPONSE:
ABC-12345
- ccReg-7975888398
+ ccReg-0026661192
@@ -11307,7 +11547,7 @@ RESPONSE:
ABC-12345
- ccReg-2094076134
+ ccReg-8795975131
@@ -11335,7 +11575,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -11355,7 +11595,7 @@ RESPONSE:
ABC-12345
- ccReg-8002054128
+ ccReg-3684729819
@@ -11370,7 +11610,7 @@ REQUEST:
- domain50.ee
+ domain53.ee
256
3
@@ -11378,13 +11618,13 @@ REQUEST:
cmlraXN0aGViZXN0
- d74cd8d1c9da83127bcbfdbefc781dd1
+ 8647bd440f58fefdb9d1e8e350eafaa2
P1M13D
- 1433255634
+ 1433856929
```
@@ -11398,12 +11638,12 @@ RESPONSE:
Unimplemented object service
- domain50.ee
+ domain53.ee
- 1433255634
- ccReg-7577662278
+ 1433856929
+ ccReg-2635911369
@@ -11418,20 +11658,20 @@ REQUEST:
- domain50.ee
+ domain53.ee
3
8
cmlraXN0aGViZXN0
- d74cd8d1c9da83127bcbfdbefc781dd1
+ 8647bd440f58fefdb9d1e8e350eafaa2
Invalid Expiry
- 1433255634
+ 1433856929
```
@@ -11452,8 +11692,8 @@ RESPONSE:
- 1433255634
- ccReg-8125274982
+ 1433856929
+ ccReg-9467853318
@@ -11468,7 +11708,7 @@ REQUEST:
- domain50.ee
+ domain53.ee
256
3
@@ -11476,13 +11716,13 @@ REQUEST:
cmlraXN0aGViZXN0
- d74cd8d1c9da83127bcbfdbefc781dd1
+ 8647bd440f58fefdb9d1e8e350eafaa2
Invalid Expiry
- 1433255634
+ 1433856929
```
@@ -11500,8 +11740,8 @@ RESPONSE:
- 1433255634
- ccReg-5401810171
+ 1433856929
+ ccReg-5867316339
@@ -11516,7 +11756,7 @@ REQUEST:
- domain50.ee
+ domain53.ee
256
3
@@ -11524,13 +11764,13 @@ REQUEST:
cmlraXN0aGViZXN0
- d74cd8d1c9da83127bcbfdbefc781dd1
+ 8647bd440f58fefdb9d1e8e350eafaa2
Invalid Absolute
- 1433255634
+ 1433856929
```
@@ -11548,8 +11788,8 @@ RESPONSE:
- 1433255634
- ccReg-7214355118
+ 1433856929
+ ccReg-4084754693
@@ -11564,7 +11804,7 @@ REQUEST:
- domain50.ee
+ domain53.ee
256
3
@@ -11572,14 +11812,14 @@ REQUEST:
cmlraXN0aGViZXN0
- d74cd8d1c9da83127bcbfdbefc781dd1
+ 8647bd440f58fefdb9d1e8e350eafaa2
P1D
2014-12-23
- 1433255634
+ 1433856929
```
@@ -11594,8 +11834,8 @@ RESPONSE:
Exactly one parameter required: keyrelay > expiry > relative OR keyrelay > expiry > absolute
- 1433255634
- ccReg-7644188011
+ 1433856929
+ ccReg-5656271409
@@ -11610,7 +11850,7 @@ REQUEST:
- domain50.ee
+ domain53.ee
256
3
@@ -11618,16 +11858,16 @@ REQUEST:
cmlraXN0aGViZXN0
- d74cd8d1c9da83127bcbfdbefc781dd1
+ 8647bd440f58fefdb9d1e8e350eafaa2
P1D
-
+
JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0Zp==
- 1433255634
+ 1433856930
```
@@ -11641,12 +11881,12 @@ RESPONSE:
Unimplemented object service
- domain50.ee
+ domain53.ee
- 1433255634
- ccReg-3128458487
+ 1433856930
+ ccReg-6430731487
@@ -11661,7 +11901,7 @@ REQUEST:
- domain50.ee
+ domain53.ee
256
3
@@ -11669,16 +11909,16 @@ REQUEST:
cmlraXN0aGViZXN0
- d74cd8d1c9da83127bcbfdbefc781dd1
+ 8647bd440f58fefdb9d1e8e350eafaa2
P1D
-
+
JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0Zp==
- 1433255634
+ 1433856930
```
@@ -11693,8 +11933,8 @@ RESPONSE:
Attribute is invalid: type
- 1433255634
- ccReg-0297240223
+ 1433856930
+ ccReg-6863641737
@@ -11720,7 +11960,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -11740,7 +11980,7 @@ RESPONSE:
ABC-12345
- ccReg-2389453333
+ ccReg-9912559233
@@ -11755,7 +11995,7 @@ REQUEST:
- 1433255635
+ 1433856930
```
@@ -11770,8 +12010,8 @@ RESPONSE:
Command completed successfully; no messages
- 1433255635
- ccReg-4831425687
+ 1433856930
+ ccReg-0116992292
@@ -11799,7 +12039,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -11819,7 +12059,7 @@ RESPONSE:
ABC-12345
- ccReg-5009213156
+ ccReg-2877828495
@@ -11832,7 +12072,7 @@ REQUEST:
- 1433255635
+ 1433856930
```
@@ -11847,8 +12087,8 @@ RESPONSE:
Command completed successfully; no messages
- 1433255635
- ccReg-4579720314
+ 1433856930
+ ccReg-0427435437
@@ -11874,7 +12114,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -11894,7 +12134,7 @@ RESPONSE:
ABC-12345
- ccReg-1117836622
+ ccReg-2081123931
@@ -11907,7 +12147,7 @@ REQUEST:
- 1433255635
+ 1433856930
```
@@ -11922,12 +12162,12 @@ RESPONSE:
Command completed successfully; ack to dequeue
- 2015-06-02T14:33:55Z
+ 2015-06-09T13:35:30Z
Balance low.
- 1433255635
- ccReg-6818644062
+ 1433856930
+ ccReg-4209515587
@@ -11953,7 +12193,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -11973,7 +12213,7 @@ RESPONSE:
ABC-12345
- ccReg-5629164655
+ ccReg-3102277142
@@ -11986,7 +12226,7 @@ REQUEST:
- 1433255635
+ 1433856930
```
@@ -12004,8 +12244,8 @@ RESPONSE:
- 1433255635
- ccReg-8779692532
+ 1433856930
+ ccReg-7763044447
@@ -12031,7 +12271,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -12051,7 +12291,7 @@ RESPONSE:
ABC-12345
- ccReg-2322466492
+ ccReg-2314842369
@@ -12064,7 +12304,7 @@ REQUEST:
- 1433255635
+ 1433856930
```
@@ -12080,8 +12320,8 @@ RESPONSE:
- 1433255635
- ccReg-1448968329
+ 1433856930
+ ccReg-5253379932
@@ -12094,7 +12334,7 @@ REQUEST:
- 1433255635
+ 1433856930
```
@@ -12112,8 +12352,8 @@ RESPONSE:
- 1433255635
- ccReg-5059320168
+ 1433856930
+ ccReg-3989135852
@@ -12128,7 +12368,7 @@ REQUEST:
- 1433255635
+ 1433856930
```
@@ -12143,8 +12383,8 @@ RESPONSE:
Attribute is invalid: op
- 1433255635
- ccReg-7334193234
+ 1433856930
+ ccReg-2185508033
@@ -12159,7 +12399,7 @@ REQUEST:
- 1433255635
+ 1433856930
```
@@ -12174,12 +12414,12 @@ RESPONSE:
Command completed successfully; ack to dequeue
- 2015-06-02T14:33:55Z
+ 2015-06-09T13:35:30Z
Smth else.
- 1433255635
- ccReg-8601126353
+ 1433856930
+ ccReg-8073809180
@@ -12192,7 +12432,7 @@ REQUEST:
- 1433255635
+ 1433856930
```
@@ -12208,8 +12448,8 @@ RESPONSE:
- 1433255635
- ccReg-0720878869
+ 1433856930
+ ccReg-0415863944
@@ -12222,7 +12462,7 @@ REQUEST:
- 1433255635
+ 1433856931
```
@@ -12237,12 +12477,12 @@ RESPONSE:
Command completed successfully; ack to dequeue
- 2015-06-02T14:33:55Z
+ 2015-06-09T13:35:30Z
Something.
- 1433255635
- ccReg-6387534980
+ 1433856931
+ ccReg-2888360272
@@ -12255,7 +12495,7 @@ REQUEST:
- 1433255635
+ 1433856931
```
@@ -12271,8 +12511,8 @@ RESPONSE:
- 1433255635
- ccReg-7629601014
+ 1433856931
+ ccReg-3776138253
@@ -12285,7 +12525,7 @@ REQUEST:
- 1433255635
+ 1433856931
```
@@ -12300,12 +12540,12 @@ RESPONSE:
Command completed successfully; ack to dequeue
- 2015-06-02T14:33:55Z
+ 2015-06-09T13:35:30Z
Balance low.
- 1433255635
- ccReg-7195300830
+ 1433856931
+ ccReg-6512052409
@@ -12318,7 +12558,7 @@ REQUEST:
- 1433255635
+ 1433856931
```
@@ -12334,8 +12574,8 @@ RESPONSE:
- 1433255635
- ccReg-9650279518
+ 1433856931
+ ccReg-1064326530
@@ -12348,7 +12588,7 @@ REQUEST:
- 1433255635
+ 1433856931
```
@@ -12363,8 +12603,8 @@ RESPONSE:
Command completed successfully; no messages
- 1433255635
- ccReg-7592361386
+ 1433856931
+ ccReg-9503618929
@@ -12379,7 +12619,7 @@ RESPONSE:
EPP server (EIS)
- 2015-06-02T14:33:56Z
+ 2015-06-09T13:35:31Z
1.0
en
@@ -12389,7 +12629,7 @@ RESPONSE:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -12435,7 +12675,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -12455,7 +12695,7 @@ RESPONSE:
ABC-12345
- ccReg-7464095017
+ ccReg-0675836419
@@ -12483,7 +12723,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -12503,7 +12743,7 @@ RESPONSE:
ABC-12345
- ccReg-2654938305
+ ccReg-5362887725
@@ -12538,7 +12778,7 @@ RESPONSE:
ABC-12345
- ccReg-9898783286
+ ccReg-2412906114
@@ -12566,7 +12806,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -12584,7 +12824,7 @@ RESPONSE:
Authentication error; server closing connection
- ccReg-8185595001
+ ccReg-4161845795
@@ -12612,7 +12852,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -12632,7 +12872,7 @@ RESPONSE:
ABC-12345
- ccReg-4199405905
+ ccReg-0755301082
@@ -12660,7 +12900,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -12680,7 +12920,7 @@ RESPONSE:
ABC-12345
- ccReg-0414590639
+ ccReg-4922645880
@@ -12706,7 +12946,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -12726,7 +12966,7 @@ RESPONSE:
ABC-12345
- ccReg-6335502065
+ ccReg-7563994430
@@ -12754,7 +12994,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -12774,7 +13014,7 @@ RESPONSE:
ABC-12345
- ccReg-6677960555
+ ccReg-5953333837
@@ -12803,7 +13043,7 @@ RESPONSE:
ABC-12345
- ccReg-5660755803
+ ccReg-9035861075
@@ -12832,7 +13072,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -12852,7 +13092,7 @@ RESPONSE:
ABC-12345
- ccReg-3509704396
+ ccReg-4506142098
@@ -12881,7 +13121,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -12901,7 +13141,7 @@ RESPONSE:
ABC-12345
- ccReg-9043992654
+ ccReg-6379769461
@@ -12930,7 +13170,7 @@ REQUEST:
urn:ietf:params:xml:ns:keyrelay-1.0
urn:ietf:params:xml:ns:secDNS-1.1
- urn:ee:eis:xml:epp:eis-1.0
+ https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd
@@ -12950,7 +13190,7 @@ RESPONSE:
ABC-12345
- ccReg-6766869050
+ ccReg-7253521976
diff --git a/doc/epp/contact.md b/doc/epp/contact.md
index a129123f5..83036a61e 100644
--- a/doc/epp/contact.md
+++ b/doc/epp/contact.md
@@ -26,7 +26,7 @@ Contact Mapping protocol short version:
1 Phone number in format \+ddd.d+
1 E-mail
1
- 1 Attribute: xmlns:eis="urn:ee:eis:xml:epp:eis-1.0"
+ 1 Attribute: xmlns:eis="https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd"
1 Contact identificator
Attribute: "type"
"bic" # Business registry code
@@ -62,7 +62,7 @@ Contact Mapping protocol short version:
0-1 Required if registrar is not the owner of the contact.
1 Contact password. Attribute: roid="String"
0-1
- 0-1 Attribute: xmlns:eis="urn:ee:eis:xml:epp:eis-1.0"
+ 0-1 Attribute: xmlns:eis="https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd"
0-1 Contact identificator
Attribute: "type"
"bic" # Business registry code
@@ -87,7 +87,7 @@ Contact Mapping protocol short version:
0-1 Required if registrar is not the owner of the contact.
1 Contact password. Attribute: roid="String"
0-1
- 0-1 Attribute: xmlns:eis="urn:ee:eis:xml:epp:eis-1.0"
+ 0-1 Attribute: xmlns:eis="https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd"
0-1 Base64 encoded document.
Attribute: type="pdf/bdoc/ddoc/zip/rar/gz/tar/7z"
0-1 Client transaction id
diff --git a/doc/epp/domain.md b/doc/epp/domain.md
index 0d3eede4a..16aadb9f8 100644
--- a/doc/epp/domain.md
+++ b/doc/epp/domain.md
@@ -35,7 +35,7 @@ Domain name mapping protocol short version:
1 Allowed values: 3
1 Allowed values: 3, 5, 6, 7, 8, 252, 253, 254, 255
1 Public key
- 1 Attribute: xmlns:eis="urn:ee:eis:xml:epp:eis-1.0"
+ 1 Attribute: xmlns:eis="https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd"
1 Base64 encoded document.
Attribute: type="pdf/bdoc/ddoc/zip/rar/gz/tar/7z"
0-1 Client transaction id
@@ -82,7 +82,7 @@ Domain name mapping protocol short version:
0-1
1-n
1 Public key
- 0-1 Attribute: xmlns:eis="urn:ee:eis:xml:epp:eis-1.0"
+ 0-1 Attribute: xmlns:eis="https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd"
0-1 Base64 encoded document. Required if registrant is changing.
Attribute: type="pdf/bdoc/ddoc/zip/rar/gz/tar/7z"
0-1 Client transaction id
@@ -98,7 +98,7 @@ Domain name mapping protocol short version:
Optional attribute: verified="yes/no"
1 Domain name. Can contain unicode characters.
1
- 1 Attribute: xmlns:eis="urn:ee:eis:xml:epp:eis-1.0"
+ 1 Attribute: xmlns:eis="https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd"
1 Base64 encoded document.
Attribute: type="pdf/bdoc/ddoc/zip/rar/gz/tar/7z"
0-1 Client transaction id
@@ -130,7 +130,7 @@ Domain name mapping protocol short version:
1 Registration period for domain.
Must add up to 1 / 2 / 3 years. Attribute: unit="y/m/d"
0-1
- 0-1 Attribute: xmlns:eis="urn:ee:eis:xml:epp:eis-1.0"
+ 0-1 Attribute: xmlns:eis="https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd"
0-1 Base64 encoded document.
Attribute: type="pdf/bdoc/ddoc/zip/rar/gz/tar/7z"
0-1 Client transaction id
@@ -147,7 +147,7 @@ Domain name mapping protocol short version:
1
1 Domain password. Attribute: roid="String"
0-1
- 0-1 Attribute: xmlns:eis="urn:ee:eis:xml:epp:eis-1.0"
+ 0-1 Attribute: xmlns:eis="https://raw.githubusercontent.com/internetee/registry/alpha/doc/schemas/eis-1.0.xsd"
0-1 Base64 encoded document.
Attribute: type="pdf/bdoc/ddoc/zip/rar/gz/tar/7z"
0-1 Client transaction id
diff --git a/doc/schemas/contact-1.0.xsd b/doc/schemas/contact-1.0.xsd
index 96e7a0f97..a3c463544 100644
--- a/doc/schemas/contact-1.0.xsd
+++ b/doc/schemas/contact-1.0.xsd
@@ -12,7 +12,6 @@
-->
-
@@ -73,23 +72,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -103,8 +85,6 @@
-
@@ -220,8 +200,6 @@
minOccurs="0"/>
-
diff --git a/doc/schemas/contact-eis-1.0.xsd b/doc/schemas/contact-eis-1.0.xsd
new file mode 100644
index 000000000..2ad88b6c9
--- /dev/null
+++ b/doc/schemas/contact-eis-1.0.xsd
@@ -0,0 +1,366 @@
+
+
+
+
+
+
+
+
+
+
+
+ Extensible Provisioning Protocol v1.0
+ contact provisioning schema.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/doc/schemas/domain-1.0.xsd b/doc/schemas/domain-1.0.xsd
index 9ce83db8d..2f62e3e8b 100644
--- a/doc/schemas/domain-1.0.xsd
+++ b/doc/schemas/domain-1.0.xsd
@@ -15,7 +15,6 @@
-
diff --git a/doc/schemas/domain-eis-1.0.xsd b/doc/schemas/domain-eis-1.0.xsd
new file mode 100644
index 000000000..0e77bebe1
--- /dev/null
+++ b/doc/schemas/domain-eis-1.0.xsd
@@ -0,0 +1,451 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Extensible Provisioning Protocol v1.0
+ domain provisioning schema.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/doc/schemas/eis-1.0.xsd b/doc/schemas/eis-1.0.xsd
index 98a73caf6..262d94581 100644
--- a/doc/schemas/eis-1.0.xsd
+++ b/doc/schemas/eis-1.0.xsd
@@ -1,39 +1,39 @@
- EIS Extensible Provisioning Protocol v1.0
- extension schema.
+ EIS Extensible Provisioning Protocol v1.0 extension schema.
-
+
-
+
-
-
+
+
-
+
+
+
@@ -55,6 +55,9 @@
+
@@ -66,10 +69,9 @@
-
+
-
diff --git a/lib/tasks/zonefile.rake b/lib/tasks/zonefile.rake
index 11b7c7fe3..3609341cd 100644
--- a/lib/tasks/zonefile.rake
+++ b/lib/tasks/zonefile.rake
@@ -13,7 +13,7 @@ namespace :zonefile do
ret text;
BEGIN
-- define filters
- include_filter = '%' || i_origin;
+ include_filter = '%.' || i_origin;
-- for %.%.%
IF i_origin ~ '\\.' THEN
diff --git a/spec/epp/contact_spec.rb b/spec/epp/contact_spec.rb
index ebe0d646d..a0c9920fc 100644
--- a/spec/epp/contact_spec.rb
+++ b/spec/epp/contact_spec.rb
@@ -2,7 +2,7 @@ require 'rails_helper'
describe 'EPP Contact', epp: true do
before :all do
- @xsd = Nokogiri::XML::Schema(File.read('doc/schemas/contact-1.0.xsd'))
+ @xsd = Nokogiri::XML::Schema(File.read('doc/schemas/contact-eis-1.0.xsd'))
@registrar1 = Fabricate(:registrar1)
@registrar2 = Fabricate(:registrar2)
@epp_xml = EppXml::Contact.new(cl_trid: 'ABC-12345')
@@ -15,13 +15,19 @@ describe 'EPP Contact', epp: true do
@contact = Fabricate(:contact, registrar: @registrar1)
@extension = {
- legalDocument: {
- value: 'dGVzdCBmYWlsCg==',
- attrs: { type: 'pdf' }
- },
ident: {
value: '37605030299',
attrs: { type: 'priv', cc: 'EE' }
+ },
+ legalDocument: {
+ value: 'dGVzdCBmYWlsCg==',
+ attrs: { type: 'pdf' }
+ }
+ }
+ @update_extension = {
+ legalDocument: {
+ value: 'dGVzdCBmYWlsCg==',
+ attrs: { type: 'pdf' }
}
}
end
@@ -106,13 +112,13 @@ describe 'EPP Contact', epp: true do
it 'successfully saves ident type with legal document' do
extension = {
- legalDocument: {
- value: 'dGVzdCBmYWlsCg==',
- attrs: { type: 'pdf' }
- },
ident: {
value: '1990-22-12',
attrs: { type: 'birthday', cc: 'US' }
+ },
+ legalDocument: {
+ value: 'dGVzdCBmYWlsCg==',
+ attrs: { type: 'pdf' }
}
}
response = create_request({}, extension)
@@ -272,7 +278,7 @@ describe 'EPP Contact', epp: true do
end
def update_request(overwrites = {}, extension = {}, options = {})
- extension = @extension if extension.blank?
+ extension = @update_extension if extension.blank?
defaults = {
id: { value: 'asd123123er' },
@@ -394,22 +400,23 @@ describe 'EPP Contact', epp: true do
@contact.reload.code.should == 'FIRST0:SH8013'
end
- it 'should update ident' do
+ it 'should not be able to update ident' do
extension = {
- legalDocument: {
- value: 'dGVzdCBmYWlsCg==',
- attrs: { type: 'pdf' }
- },
ident: {
value: '1990-22-12',
attrs: { type: 'birthday', cc: 'US' }
+ },
+ legalDocument: {
+ value: 'dGVzdCBmYWlsCg==',
+ attrs: { type: 'pdf' }
}
}
response = update_request({ id: { value: 'FIRST0:SH8013' } }, extension)
- response[:msg].should == 'Command completed successfully'
- response[:result_code].should == '1000'
+ response[:msg].should ==
+ 'Parameter value policy error. Update of ident data not allowed [ident]'
+ response[:result_code].should == '2306'
- Contact.find_by(code: 'FIRST0:SH8013').ident_type.should == 'birthday'
+ Contact.find_by(code: 'FIRST0:SH8013').ident_type.should == 'priv'
end
it 'should return parameter value policy errror for org update' do
diff --git a/spec/epp/domain_spec.rb b/spec/epp/domain_spec.rb
index f14c79915..29f3bd0ab 100644
--- a/spec/epp/domain_spec.rb
+++ b/spec/epp/domain_spec.rb
@@ -2,7 +2,7 @@ require 'rails_helper'
describe 'EPP Domain', epp: true do
before(:all) do
- @xsd = Nokogiri::XML::Schema(File.read('doc/schemas/domain-1.0.xsd'))
+ @xsd = Nokogiri::XML::Schema(File.read('doc/schemas/domain-eis-1.0.xsd'))
@epp_xml = EppXml.new(cl_trid: 'ABC-12345')
@registrar1 = Fabricate(:registrar1, code: 'REGDOMAIN1')
@registrar2 = Fabricate(:registrar2, code: 'REGDOMAIN2')
@@ -193,7 +193,7 @@ describe 'EPP Domain', epp: true do
xml = domain_create_xml(name: { value: "#{'ä' * 63}.ee" })
response = epp_plain_request(xml)
- response[:msg].should == 'Domain name is too long (maximum is 63 characters) [name_puny]'
+ response[:msg].should == 'Domain name is too long (maximum is 63 characters) [puny_label]'
response[:result_code].should == '2005'
response[:clTRID].should == 'ABC-12345'
end
@@ -326,7 +326,7 @@ describe 'EPP Domain', epp: true do
})
response = epp_plain_request(xml)
- response[:results][0][:result_code].should == '2004'
+ response[:results][0][:result_code].should == '2306'
response[:results][0][:msg].should == 'Period must add up to 1, 2 or 3 years [period]'
response[:results][0][:value].should == '367'
end
@@ -1949,7 +1949,10 @@ describe 'EPP Domain', epp: true do
### RENEW ###
it 'renews a domain' do
- exp_date = 1.year.since.to_date
+ domain.valid_to = Time.zone.now.to_date + 10.days
+ domain.save
+
+ exp_date = domain.valid_to.to_date
xml = @epp_xml.domain.renew(
name: { value: domain.name },
curExpDate: { value: exp_date.to_s },
@@ -1979,7 +1982,9 @@ describe 'EPP Domain', epp: true do
end
it 'returns an error when period is invalid' do
- exp_date = (1.year.since.to_date)
+ domain.valid_to = Time.zone.now.to_date + 10.days
+ domain.save
+ exp_date = domain.valid_to.to_date
xml = @epp_xml.domain.renew(
name: { value: domain.name },
@@ -1989,10 +1994,59 @@ describe 'EPP Domain', epp: true do
response = epp_plain_request(xml)
response[:results][0][:msg].should == 'Period must add up to 1, 2 or 3 years [period]'
- response[:results][0][:result_code].should == '2004'
+ response[:results][0][:result_code].should == '2306'
response[:results][0][:value].should == '4'
end
+ it 'does not renew a domain unless less than 90 days till expiration' do
+ domain.valid_to = Time.zone.now.to_date + 91.days
+ domain.save
+ exp_date = domain.valid_to.to_date
+
+ xml = @epp_xml.domain.renew(
+ name: { value: domain.name },
+ curExpDate: { value: exp_date.to_s },
+ period: { value: '1', attrs: { unit: 'y' } }
+ )
+
+ response = epp_plain_request(xml)
+ response[:results][0][:msg].should == 'Object is not eligible for renewal'
+ response[:results][0][:result_code].should == '2105'
+
+ domain.valid_to = Time.zone.now.to_date + 90.days
+ domain.save
+ exp_date = domain.valid_to.to_date
+
+ xml = @epp_xml.domain.renew(
+ name: { value: domain.name },
+ curExpDate: { value: exp_date.to_s },
+ period: { value: '1', attrs: { unit: 'y' } }
+ )
+
+ response = epp_plain_request(xml)
+ response[:results][0][:msg].should == 'Command completed successfully'
+ response[:results][0][:result_code].should == '1000'
+ end
+
+ it 'does not renew a domain unless less than 90 days till expiration' do
+ Setting.days_to_renew_domain_before_expire = 0
+
+ domain.valid_to = Time.zone.now.to_date + 5.years
+ domain.save
+ exp_date = domain.valid_to.to_date
+
+ xml = @epp_xml.domain.renew(
+ name: { value: domain.name },
+ curExpDate: { value: exp_date.to_s },
+ period: { value: '1', attrs: { unit: 'y' } }
+ )
+
+ response = epp_plain_request(xml)
+ response[:results][0][:msg].should == 'Command completed successfully'
+ response[:results][0][:result_code].should == '1000'
+ Setting.days_to_renew_domain_before_expire = 90
+ end
+
it 'does not renew foreign domain' do
login_as :registrar2 do
exp_date = 1.year.since.to_date
diff --git a/spec/fabricators/pricelist_fabricator.rb b/spec/fabricators/pricelist_fabricator.rb
index c98308c1d..296c3b5fb 100644
--- a/spec/fabricators/pricelist_fabricator.rb
+++ b/spec/fabricators/pricelist_fabricator.rb
@@ -1,5 +1,8 @@
Fabricator(:pricelist) do
- active_from 1.year.ago
- active_until 1.year.since
+ valid_from 1.year.ago
+ valid_to 1.year.since
category '.ee'
+ duration '1year'
+ operation_category 'new'
+ price 10
end
diff --git a/spec/models/domain_spec.rb b/spec/models/domain_spec.rb
index c9177b406..ae432cde2 100644
--- a/spec/models/domain_spec.rb
+++ b/spec/models/domain_spec.rb
@@ -85,6 +85,17 @@ describe Domain do
@domain.registrant_update_confirmable?('123').should == false
end
+ it 'should expire domains' do
+ Domain.expire_domains
+ @domain.domain_statuses.where(value: DomainStatus::EXPIRED).count.should == 0
+
+ @domain.valid_to = Time.zone.now - 10.days
+ @domain.save
+
+ Domain.expire_domains
+ @domain.domain_statuses.where(value: DomainStatus::EXPIRED).count.should == 1
+ end
+
context 'about registrant update confirm' do
before :all do
@domain.registrant_verification_token = 123
@@ -237,7 +248,7 @@ describe Domain do
d.valid?
d.errors.full_messages.should match_array([
"Domain name Domain name is invalid",
- "Domain name Domain name is too long (maximum is 63 characters)"
+ "Puny label Domain name is too long (maximum is 63 characters)"
])
end
@@ -247,7 +258,15 @@ describe Domain do
d.valid?
d.errors.full_messages.should match_array([
"Domain name Domain name is invalid",
- "Domain name Domain name is too long (maximum is 63 characters)"
+ "Puny label Domain name is too long (maximum is 63 characters)"
+ ])
+ end
+
+ it 'should be valid when name length is 63 characters' do
+ d = Fabricate.build(:domain,
+ name: "õäöüšžõäöüšžõäöüšžõäöüšžõäöüšžõäöüšžõäöüšžab123.pri.ee")
+ d.valid?
+ d.errors.full_messages.should match_array([
])
end
@@ -255,7 +274,7 @@ describe Domain do
d = Fabricate.build(:domain, name: "#{'ä' * 63}.ee")
d.valid?
d.errors.full_messages.should == [
- "Domain name Domain name is too long (maximum is 63 characters)"
+ "Puny label Domain name is too long (maximum is 63 characters)"
]
end
@@ -264,7 +283,7 @@ describe Domain do
d.valid?
d.errors.full_messages.should match_array([
"Domain name Domain name is invalid",
- "Domain name Domain name is too long (maximum is 63 characters)"
+ "Puny label Domain name is too long (maximum is 63 characters)"
])
end
@@ -272,7 +291,7 @@ describe Domain do
d = Fabricate.build(:domain, name: "#{'ä' * 63}.pri.ee")
d.valid?
d.errors.full_messages.should match_array([
- "Domain name Domain name is too long (maximum is 63 characters)"
+ "Puny label Domain name is too long (maximum is 63 characters)"
])
end
diff --git a/spec/models/pricelist_spec.rb b/spec/models/pricelist_spec.rb
index b7d8a2942..f52b1aeeb 100644
--- a/spec/models/pricelist_spec.rb
+++ b/spec/models/pricelist_spec.rb
@@ -15,9 +15,9 @@ describe Pricelist do
it 'should not be valid' do
@pricelist.valid?
@pricelist.errors.full_messages.should match_array([
- "Valid from is missing",
- "Active until is missing",
- "Category is missing"
+ "Category is missing",
+ "Duration is missing",
+ "Operation category is missing"
])
end
@@ -32,6 +32,11 @@ describe Pricelist do
it 'should not have any versions' do
@pricelist.versions.should == []
end
+
+ it 'should not have name' do
+ @pricelist.name.should == ' '
+ end
+
end
context 'with valid attributes' do
@@ -50,10 +55,14 @@ describe Pricelist do
@pricelist.errors.full_messages.should match_array([])
end
+ it 'should have name' do
+ @pricelist.name.should == 'new .ee'
+ end
+
it 'should have one version' do
with_versioning do
@pricelist.versions.reload.should == []
- @pricelist.name = 'New name'
+ @pricelist.price = 11
@pricelist.save
@pricelist.errors.full_messages.should match_array([])
@pricelist.versions.size.should == 1
diff --git a/spec/models/zonefile_setting_spec.rb b/spec/models/zonefile_setting_spec.rb
index 9604a1cd0..c8909f2eb 100644
--- a/spec/models/zonefile_setting_spec.rb
+++ b/spec/models/zonefile_setting_spec.rb
@@ -24,7 +24,7 @@ describe ZonefileSetting do
master_nameserver: 'ns.tld.ee'
}).first_or_create!
- d = Fabricate(:domain_with_dnskeys)
+ d = Fabricate(:domain_with_dnskeys, name: 'testpri.ee')
d.nameservers << Nameserver.new({
hostname: "ns.#{d.name}",
ipv4: '123.123.123.123',