forked from ak545/dns-domain-expiration-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
domains-ex.txt
85 lines (81 loc) · 3.79 KB
/
domains-ex.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#----------------------------------------------------------------------------------------------------
#
# Пример файла со списком доменов
# Допускается:
# - пустые строки
# - строка - комментарий (строка должна начинаться с символа "#")
# - строка - название заголовка группы (строка должна начинаться с символа "!")
#
# Формат задания строки домена:
# - имя домена (обязательно первым)
# - значение истечения срока в днях (целое число)
# - значение интервала в секундах перед тем как перейти к следующей проверке (sleep:целое число)
# - стоимость продления домена (cost:float)
# - пропустить проверку изменений текста whois для этого домена (skip_checking_whois_text_changes)
#
# Например:
# ! Группа 1
# имя_домена
# имя_домена число
#
# ! Группа 2
# имя_домена число sleep:число cost:float skip_checking_whois_text_changes
# имя_домена sleep:число число
# имя_домена sleep:число
#
# ! Regexp Группа 3
# @regexp:регулярное_выражение cost:0 sleep:4 skip_checking_whois_text_changes
#
# Если значение истечения срока в днях не задано,
# используется значение по-умолчанию или из параметра командной строки
#
# Если значение интервала в секундах перед тем как перейти к следующей проверке не задано,
# используется значение по-умолчанию или из параметра командной строки
#
# Если значение стоимости продления домена не задано,
# используется значение по-умолчанию или из параметра
# командной строки
#
#
#
# Example file with the list of domains
# Allowed:
# - blank lines
# - string as comment (the string must begin with the character "#")
# - string as the name of the group header (the string must begin with the character "!")
#
# The format for setting the domain string is:
# - domain name (required first)
# - expiration value in days (integer)
# - interval value in seconds before proceeding to the next check (sleep:integer)
# - the cost of renewing a domain (cost:float)
# - skip checking whois text changes for this domain (skip_checking_whois_text_changes)
#
# For example:
# ! Group 1
# domain_name
# domain_name integer
#
# ! Group 2
# domain_name integer sleep:integer cost:float skip_checking_whois_text_changes
# domain_name sleep:integer integer
# domain_name sleep:integer
#
# ! Regexp Group 3
# @regexp:regular_expression cost:0 sleep:4 skip_checking_whois_text_changes
#
# If the expiration value in days is not specified,
# the default value is used or from the command line parameter
#
# If the interval value in seconds is not specified before moving on to the next check,
# the default value or from the command line parameter is used.
#
# If the cost of renewing a domain is not specified,
# the default value is used or from the command
# line parameter
#
#----------------------------------------------------------------------------------------------------
! Regexp Group
@regexp:youtube\.(com|org|net) cost:0 sleep:4 skip_checking_whois_text_changes
@regexp:youtube[0-9]\.com cost:0 skip_checking_whois_text_changes sleep:4
@regexp:youtube([0-9]|1[0-5])\.com cost:0 skip_checking_whois_text_changes sleep:4