aethernal-agent 0.2.0 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/COPYING +674 -0
- data/Gemfile.lock +38 -33
- data/README.md +3 -32
- data/Vagrantfile +10 -2
- data/aethernal-agent.gemspec +4 -1
- data/bin/install-aa +121 -0
- data/bin/run-aa-for-test +1 -1
- data/exe/aa-cli +7 -0
- data/lib/aethernal_agent.rb +10 -0
- data/lib/aethernal_agent/apache/apache.rb +8 -5
- data/lib/aethernal_agent/apache/templates/aa-default.conf +2 -0
- data/lib/aethernal_agent/apache/templates/aa-user.conf.erb +2 -0
- data/lib/aethernal_agent/app.rb +82 -22
- data/lib/aethernal_agent/apt.rb +17 -6
- data/lib/aethernal_agent/cli/core.rb +11 -0
- data/lib/aethernal_agent/cli/services.rb +56 -0
- data/lib/aethernal_agent/docker/container_settings.rb +33 -0
- data/lib/aethernal_agent/docker/env.rb +33 -0
- data/lib/aethernal_agent/docker/port_binding.rb +32 -0
- data/lib/aethernal_agent/docker/volume.rb +28 -0
- data/lib/aethernal_agent/filesystem.rb +2 -1
- data/lib/aethernal_agent/loader.rb +3 -3
- data/lib/aethernal_agent/operation.rb +1 -1
- data/lib/aethernal_agent/plugins/bazarr/bazarr.rb +57 -0
- data/lib/aethernal_agent/plugins/bazarr/files/bazarr.service +16 -0
- data/lib/aethernal_agent/plugins/bazarr/manifest.yml +64 -0
- data/lib/aethernal_agent/plugins/bazarr/meta/bazarr.png +0 -0
- data/lib/aethernal_agent/plugins/bazarr/templates/bazarr.apache.conf.erb +5 -0
- data/lib/aethernal_agent/plugins/bazarr/templates/config.ini.erb +135 -0
- data/lib/aethernal_agent/plugins/cardigann/cardigann.rb +45 -0
- data/lib/aethernal_agent/plugins/cardigann/files/cardigann.service +13 -0
- data/lib/aethernal_agent/plugins/cardigann/manifest.yml +36 -0
- data/lib/aethernal_agent/plugins/cardigann/meta/cardigann.png +0 -0
- data/lib/aethernal_agent/plugins/cardigann/templates/cardigann.apache.conf.erb +6 -0
- data/lib/aethernal_agent/plugins/cardigann/templates/config.json.erb +7 -0
- data/lib/aethernal_agent/plugins/couchpotato/couchpotato.rb +45 -0
- data/lib/aethernal_agent/plugins/couchpotato/files/couchpotato.service +13 -0
- data/lib/aethernal_agent/plugins/couchpotato/manifest.yml +37 -0
- data/lib/aethernal_agent/plugins/couchpotato/meta/couchpotato.png +0 -0
- data/lib/aethernal_agent/plugins/couchpotato/templates/couchpotato.apache.conf.erb +4 -0
- data/lib/aethernal_agent/plugins/couchpotato/templates/settings.conf.erb +585 -0
- data/lib/aethernal_agent/plugins/deluge/deluge.rb +5 -0
- data/lib/aethernal_agent/plugins/deluge/manifest.yml +2 -2
- data/lib/aethernal_agent/plugins/deluge/templates/core.conf.erb +1 -1
- data/lib/aethernal_agent/plugins/deluge/templates/deluge-web.service.erb +1 -1
- data/lib/aethernal_agent/plugins/deluge/templates/deluge.apache.conf.erb +0 -1
- data/lib/aethernal_agent/plugins/deluge/templates/deluged.service.erb +1 -1
- data/lib/aethernal_agent/plugins/deluge/templates/ltconfig.conf.erb +21 -0
- data/lib/aethernal_agent/plugins/filebrowser/manifest.yml +1 -1
- data/lib/aethernal_agent/plugins/gitea/manifest.yml +1 -1
- data/lib/aethernal_agent/plugins/jackett/files/jackett.service +15 -0
- data/lib/aethernal_agent/plugins/jackett/jackett.rb +49 -0
- data/lib/aethernal_agent/plugins/jackett/manifest.yml +54 -0
- data/lib/aethernal_agent/plugins/jackett/meta/jackett.png +0 -0
- data/lib/aethernal_agent/plugins/jackett/templates/ServerConfig.json.erb +8 -0
- data/lib/aethernal_agent/plugins/jackett/templates/jackett.apache.conf.erb +5 -0
- data/lib/aethernal_agent/plugins/jdownloader/files/jdownloader.service +13 -0
- data/lib/aethernal_agent/plugins/jdownloader/jdownloader.rb +38 -0
- data/lib/aethernal_agent/plugins/jdownloader/manifest.yml +53 -0
- data/lib/aethernal_agent/plugins/jdownloader/meta/jdownloader.png +0 -0
- data/lib/aethernal_agent/plugins/jdownloader/templates/org.jdownloader.api.myjdownloader.MyJDownloaderSettings.json.erb +5 -0
- data/lib/aethernal_agent/plugins/medusa/files/medusa.service +13 -0
- data/lib/aethernal_agent/plugins/medusa/manifest.yml +54 -0
- data/lib/aethernal_agent/plugins/medusa/medusa.rb +47 -0
- data/lib/aethernal_agent/plugins/medusa/meta/medusa.png +0 -0
- data/lib/aethernal_agent/plugins/medusa/templates/config.ini.erb +1308 -0
- data/lib/aethernal_agent/plugins/medusa/templates/medusa.apache.conf.erb +12 -0
- data/lib/aethernal_agent/plugins/nextcloud/manifest.yml +54 -0
- data/lib/aethernal_agent/plugins/nextcloud/meta/nextcloud.png +0 -0
- data/lib/aethernal_agent/plugins/nextcloud/nextcloud.rb +44 -0
- data/lib/aethernal_agent/plugins/nextcloud/templates/nextcloud.apache.conf.erb +4 -0
- data/lib/aethernal_agent/plugins/nzbget/files/nzbget.service +13 -0
- data/lib/aethernal_agent/plugins/nzbget/manifest.yml +54 -0
- data/lib/aethernal_agent/plugins/nzbget/meta/nzbget.png +0 -0
- data/lib/aethernal_agent/plugins/nzbget/nzbget.rb +44 -0
- data/lib/aethernal_agent/plugins/nzbget/templates/nzbget.apache.conf.erb +5 -0
- data/lib/aethernal_agent/plugins/nzbget/templates/nzbget.conf.erb +1508 -0
- data/lib/aethernal_agent/plugins/olaris/manifest.yml +1 -1
- data/lib/aethernal_agent/plugins/ombi/manifest.yml +5 -2
- data/lib/aethernal_agent/plugins/ombi/ombi.rb +59 -22
- data/lib/aethernal_agent/plugins/ombi/templates/ombi.apache.conf.erb +3 -4
- data/lib/aethernal_agent/plugins/ombi/templates/ombi.service.erb +2 -2
- data/lib/aethernal_agent/plugins/plex-docker/manifest.yml +74 -0
- data/lib/aethernal_agent/plugins/plex-docker/meta/plex.png +0 -0
- data/lib/aethernal_agent/plugins/plex-docker/plex_docker.rb +39 -0
- data/lib/aethernal_agent/plugins/plex-docker/templates/Preferences.xml.erb +2 -0
- data/lib/aethernal_agent/plugins/plex-docker/templates/plex_docker.apache.conf.erb +21 -0
- data/lib/aethernal_agent/plugins/plex-docker/templates/plex_docker.service.erb +10 -0
- data/lib/aethernal_agent/plugins/plex/files/plex.service +1 -1
- data/lib/aethernal_agent/plugins/plex/manifest.yml +6 -5
- data/lib/aethernal_agent/plugins/plex/plex.rb +2 -4
- data/lib/aethernal_agent/plugins/plex/templates/Preferences.xml.erb +1 -1
- data/lib/aethernal_agent/plugins/plex/templates/plex.apache.conf.erb +21 -0
- data/lib/aethernal_agent/plugins/portainer/manifest.yml +50 -0
- data/lib/aethernal_agent/plugins/portainer/meta/portainer.png +0 -0
- data/lib/aethernal_agent/plugins/portainer/portainer.rb +38 -0
- data/lib/aethernal_agent/plugins/portainer/templates/portainer.apache.conf.erb +7 -0
- data/lib/aethernal_agent/plugins/portainer/templates/portainer.service.erb +10 -0
- data/lib/aethernal_agent/plugins/radarr/files/radarr.service +2 -2
- data/lib/aethernal_agent/plugins/radarr/manifest.yml +7 -13
- data/lib/aethernal_agent/plugins/radarr/radarr.rb +24 -18
- data/lib/aethernal_agent/plugins/radarr/templates/radarr.apache.conf.erb +3 -4
- data/lib/aethernal_agent/plugins/resilio_docker/manifest.yml +59 -0
- data/lib/aethernal_agent/plugins/resilio_docker/meta/resilio.png +0 -0
- data/lib/aethernal_agent/plugins/resilio_docker/resilio_docker.rb +29 -0
- data/lib/aethernal_agent/plugins/resilio_docker/templates/resilio_docker.apache.conf.erb +11 -0
- data/lib/aethernal_agent/plugins/resilio_docker/templates/resilio_docker.conf.erb +38 -0
- data/lib/aethernal_agent/plugins/resilio_docker/templates/resilio_docker.service.erb +10 -0
- data/lib/aethernal_agent/plugins/rutorrent/manifest.yml +84 -0
- data/lib/aethernal_agent/plugins/rutorrent/meta/rtorrent.png +0 -0
- data/lib/aethernal_agent/plugins/rutorrent/rutorrent.rb +41 -0
- data/lib/aethernal_agent/plugins/rutorrent/templates/rtorrent.rc.erb +69 -0
- data/lib/aethernal_agent/plugins/rutorrent/templates/rutorrent.apache.conf.erb +13 -0
- data/lib/aethernal_agent/plugins/rutorrent/templates/rutorrent.service.erb +10 -0
- data/lib/aethernal_agent/plugins/sabnzbd/files/sabnzbd.service +13 -0
- data/lib/aethernal_agent/plugins/sabnzbd/manifest.yml +43 -0
- data/lib/aethernal_agent/plugins/sabnzbd/meta/sabnzbd.png +0 -0
- data/lib/aethernal_agent/plugins/sabnzbd/sabnzbd.rb +47 -0
- data/lib/aethernal_agent/plugins/sabnzbd/templates/sabnzbd.apache.conf.erb +4 -0
- data/lib/aethernal_agent/plugins/sabnzbd/templates/sabnzbd.ini.erb +188 -0
- data/lib/aethernal_agent/plugins/sickchill/files/sickchill.service +13 -0
- data/lib/aethernal_agent/plugins/sickchill/manifest.yml +58 -0
- data/lib/aethernal_agent/plugins/sickchill/meta/sickchill.png +0 -0
- data/lib/aethernal_agent/plugins/sickchill/sickchill.rb +49 -0
- data/lib/aethernal_agent/plugins/sickchill/templates/config.ini.erb +1078 -0
- data/lib/aethernal_agent/plugins/sickchill/templates/sickchill.apache.conf.erb +4 -0
- data/lib/aethernal_agent/plugins/sonarr/files/sonarr.service +1 -1
- data/lib/aethernal_agent/plugins/sonarr/manifest.yml +3 -2
- data/lib/aethernal_agent/plugins/sonarr/templates/sonarr.apache.conf.erb +3 -4
- data/lib/aethernal_agent/plugins/syncthing/files/syncthing.service +18 -0
- data/lib/aethernal_agent/plugins/syncthing/manifest.yml +38 -0
- data/lib/aethernal_agent/plugins/syncthing/meta/syncthing.png +0 -0
- data/lib/aethernal_agent/plugins/syncthing/syncthing.rb +33 -0
- data/lib/aethernal_agent/plugins/syncthing/templates/config.xml.erb +56 -0
- data/lib/aethernal_agent/plugins/syncthing/templates/syncthing.apache.conf.erb +7 -0
- data/lib/aethernal_agent/plugins/tautulli/files/tautulli.service +13 -0
- data/lib/aethernal_agent/plugins/tautulli/manifest.yml +40 -0
- data/lib/aethernal_agent/plugins/tautulli/meta/tautulli.png +0 -0
- data/lib/aethernal_agent/plugins/tautulli/tautulli.rb +45 -0
- data/lib/aethernal_agent/plugins/tautulli/templates/config.ini.erb +222 -0
- data/lib/aethernal_agent/plugins/tautulli/templates/tautulli.apache.conf.erb +5 -0
- data/lib/aethernal_agent/plugins/vnc/manifest.yml +3 -2
- data/lib/aethernal_agent/systemd.rb +19 -13
- data/lib/aethernal_agent/utils.rb +85 -6
- data/lib/aethernal_agent/version.rb +1 -1
- data/lib/aethernal_agent/webserver/api.rb +1 -1
- data/lib/aethernal_agent/webserver/core.rb +1 -1
- metadata +154 -7
Binary file
|
@@ -0,0 +1,1308 @@
|
|
1
|
+
[General]
|
2
|
+
git_auth_type = 0
|
3
|
+
git_username = ""
|
4
|
+
git_password = ""
|
5
|
+
git_token = ""
|
6
|
+
git_reset = 0
|
7
|
+
branch = master
|
8
|
+
git_remote = origin
|
9
|
+
git_remote_url = https://github.com/pymedusa/Medusa
|
10
|
+
cur_commit_hash = d6eb72d4e1019e5d1286ae6ac1d7e4b318229ebe
|
11
|
+
cur_commit_branch = ""
|
12
|
+
config_version = 10
|
13
|
+
encryption_version = 0
|
14
|
+
encryption_secret = /CeQUWFQSTCGScMki93nCmPlsZgpRkOEtWs4myWaVe4=
|
15
|
+
log_dir = Logs
|
16
|
+
log_nr = 5
|
17
|
+
log_size = 10.0
|
18
|
+
socket_timeout = 30
|
19
|
+
web_port = <%= @port %>
|
20
|
+
web_host = 0.0.0.0
|
21
|
+
web_ipv6 = 0
|
22
|
+
web_log = 0
|
23
|
+
web_root = /medusa
|
24
|
+
web_username = <%= @user %>
|
25
|
+
web_password = <%= @password %>
|
26
|
+
web_cookie_secret =
|
27
|
+
web_use_gzip = 1
|
28
|
+
subliminal_log = 0
|
29
|
+
privacy_level = normal
|
30
|
+
ssl_verify = 1
|
31
|
+
ssl_ca_bundle = ""
|
32
|
+
download_url = ""
|
33
|
+
localhost_ip = ""
|
34
|
+
cpu_preset = NORMAL
|
35
|
+
anon_redirect = http://dereferer.org/?
|
36
|
+
api_key = 4362852422f884af99215df0d400a55d
|
37
|
+
debug = 0
|
38
|
+
dbdebug = 0
|
39
|
+
default_page = home
|
40
|
+
seeders_leechers_in_notify = 1
|
41
|
+
enable_https = 0
|
42
|
+
notify_on_login = 0
|
43
|
+
https_cert = server.crt
|
44
|
+
https_key = server.key
|
45
|
+
handle_reverse_proxy = 0
|
46
|
+
use_nzbs = 0
|
47
|
+
use_torrents = 1
|
48
|
+
nzb_method = blackhole
|
49
|
+
torrent_method = blackhole
|
50
|
+
usenet_retention = 500
|
51
|
+
cache_trimming = 0
|
52
|
+
max_cache_age = 30
|
53
|
+
autopostprocessor_frequency = 10
|
54
|
+
torrent_checker_frequency = 60
|
55
|
+
dailysearch_frequency = 40
|
56
|
+
backlog_frequency = 720
|
57
|
+
update_frequency = 1
|
58
|
+
showupdate_hour = 3
|
59
|
+
download_propers = 1
|
60
|
+
propers_search_days = 2
|
61
|
+
remove_from_client = 0
|
62
|
+
randomize_providers = 0
|
63
|
+
check_propers_interval = 4h
|
64
|
+
allow_high_priority = 1
|
65
|
+
skip_removed_files = 0
|
66
|
+
allowed_extensions = nfo, srt, sub, idx
|
67
|
+
quality_default = 3
|
68
|
+
status_default = 5
|
69
|
+
status_default_after = 3
|
70
|
+
flatten_folders_default = 0
|
71
|
+
indexer_default = 0
|
72
|
+
indexer_timeout = 20
|
73
|
+
tvdb_dvd_order_ep_ignore = 0
|
74
|
+
anime_default = 0
|
75
|
+
scene_default = 0
|
76
|
+
provider_order = ,
|
77
|
+
version_notify = 1
|
78
|
+
auto_update = 0
|
79
|
+
notify_on_update = 1
|
80
|
+
naming_strip_year = 0
|
81
|
+
naming_pattern = Season %0S/%SN - S%0SE%0E - %EN
|
82
|
+
naming_custom_abd = 0
|
83
|
+
naming_abd_pattern = %SN - %A.D - %EN
|
84
|
+
naming_custom_sports = 0
|
85
|
+
naming_sports_pattern = %SN - %A-D - %EN
|
86
|
+
naming_custom_anime = 0
|
87
|
+
naming_anime_pattern = Season %0S/%SN - S%0SE%0E - %EN
|
88
|
+
naming_multi_ep = 1
|
89
|
+
naming_anime_multi_ep = 1
|
90
|
+
naming_anime = 3
|
91
|
+
indexerDefaultLang = en
|
92
|
+
ep_default_deleted_status = 6
|
93
|
+
launch_browser = 1
|
94
|
+
trash_remove_show = 0
|
95
|
+
trash_rotate_logs = 0
|
96
|
+
sort_article = 0
|
97
|
+
proxy_setting = ""
|
98
|
+
proxy_indexers = 1
|
99
|
+
use_listview = 0
|
100
|
+
metadata_kodi = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
101
|
+
metadata_kodi_12plus = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
102
|
+
metadata_mediabrowser = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
103
|
+
metadata_ps3 = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
104
|
+
metadata_wdtv = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
105
|
+
metadata_tivo = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
106
|
+
metadata_mede8er = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
107
|
+
backlog_days = 7
|
108
|
+
cache_dir = cache
|
109
|
+
root_dirs = 0, <%= @download_path %>
|
110
|
+
tv_download_dir = ""
|
111
|
+
keep_processed_dir = 1
|
112
|
+
process_method = copy
|
113
|
+
del_rar_contents = 0
|
114
|
+
move_associated_files = 0
|
115
|
+
sync_files = !sync, lftp-pget-status, part, bts, !qb, !qB
|
116
|
+
postpone_if_sync_files = 1
|
117
|
+
postpone_if_no_subs = 0
|
118
|
+
nfo_rename = 1
|
119
|
+
process_automatically = 0
|
120
|
+
no_delete = 0
|
121
|
+
unpack = 0
|
122
|
+
rename_episodes = 1
|
123
|
+
airdate_episodes = 0
|
124
|
+
file_timestamp_timezone = network
|
125
|
+
create_missing_show_dirs = 0
|
126
|
+
add_shows_wo_dir = 0
|
127
|
+
extra_scripts = ,
|
128
|
+
git_path = ""
|
129
|
+
ignore_words = german, french, core2hd, dutch, swedish, reenc, MrLss, dubbed
|
130
|
+
preferred_words = ,
|
131
|
+
undesired_words = internal, xvid
|
132
|
+
trackers_list = udp://tracker.coppersurfer.tk:6969/announce, udp://tracker.leechers-paradise.org:6969/announce, udp://tracker.zer0day.to:1337/announce, ud$
|
133
|
+
require_words = ,
|
134
|
+
ignored_subs_list = dk, fin, heb, kor, nor, nordic, pl, swe
|
135
|
+
ignore_und_subs = False
|
136
|
+
calendar_unprotected = 0
|
137
|
+
calendar_icons = 0
|
138
|
+
no_restart = 0
|
139
|
+
developer = 0
|
140
|
+
display_all_seasons = 1
|
141
|
+
news_last_read = 1970-01-01
|
142
|
+
broken_providers = elitetorrent,
|
143
|
+
selected_root = -1
|
144
|
+
backlog_period = all
|
145
|
+
backlog_status = all
|
146
|
+
fallback_plex_enable = 1
|
147
|
+
fallback_plex_notifications = 1
|
148
|
+
fallback_plex_timeout = 3
|
149
|
+
[Blackhole]
|
150
|
+
nzb_dir = ""
|
151
|
+
torrent_dir = "<%= @watch_path %>"
|
152
|
+
[HORRIBLESUBS]
|
153
|
+
horriblesubs = 0
|
154
|
+
horriblesubs_name = HorribleSubs
|
155
|
+
horriblesubs_url = http://horriblesubs.info
|
156
|
+
horriblesubs_search_mode = eponly
|
157
|
+
horriblesubs_search_fallback = 0
|
158
|
+
horriblesubs_enable_daily = 1
|
159
|
+
horriblesubs_enable_backlog = 1
|
160
|
+
horriblesubs_enable_manualsearch = 1
|
161
|
+
horriblesubs_enable_search_delay = 0
|
162
|
+
horriblesubs_search_delay = 480
|
163
|
+
horriblesubs_ratio = ""
|
164
|
+
horriblesubs_cookies = ""
|
165
|
+
[SHANAPROJECT]
|
166
|
+
shanaproject = 0
|
167
|
+
shanaproject_name = ShanaProject
|
168
|
+
shanaproject_url = https://www.shanaproject.com/
|
169
|
+
shanaproject_search_mode = eponly
|
170
|
+
shanaproject_search_fallback = 0
|
171
|
+
shanaproject_enable_daily = 1
|
172
|
+
shanaproject_enable_backlog = 1
|
173
|
+
shanaproject_enable_manualsearch = 1
|
174
|
+
shanaproject_enable_search_delay = 0
|
175
|
+
shanaproject_search_delay = 480
|
176
|
+
shanaproject_ratio = ""
|
177
|
+
shanaproject_minseed = 1
|
178
|
+
shanaproject_minleech = 0
|
179
|
+
shanaproject_cookies = ""
|
180
|
+
[TORRENTZ2]
|
181
|
+
torrentz2 = 0
|
182
|
+
torrentz2_name = Torrentz2
|
183
|
+
torrentz2_url = https://torrentz2.eu/
|
184
|
+
torrentz2_search_mode = eponly
|
185
|
+
torrentz2_search_fallback = 0
|
186
|
+
torrentz2_enable_daily = 1
|
187
|
+
torrentz2_enable_backlog = 1
|
188
|
+
torrentz2_enable_manualsearch = 1
|
189
|
+
torrentz2_enable_search_delay = 0
|
190
|
+
torrentz2_search_delay = 480
|
191
|
+
torrentz2_ratio = ""
|
192
|
+
torrentz2_minseed = 1
|
193
|
+
torrentz2_minleech = 0
|
194
|
+
torrentz2_cookies = ""
|
195
|
+
[HDBITS]
|
196
|
+
hdbits = 0
|
197
|
+
hdbits_name = HDBits
|
198
|
+
hdbits_url = https://hdbits.org
|
199
|
+
hdbits_username = ""
|
200
|
+
hdbits_search_mode = eponly
|
201
|
+
hdbits_search_fallback = 0
|
202
|
+
hdbits_enable_daily = 1
|
203
|
+
hdbits_enable_backlog = 1
|
204
|
+
hdbits_enable_manualsearch = 1
|
205
|
+
hdbits_enable_search_delay = 0
|
206
|
+
hdbits_search_delay = 480
|
207
|
+
hdbits_passkey = ""
|
208
|
+
hdbits_ratio = ""
|
209
|
+
hdbits_minseed = 1
|
210
|
+
hdbits_minleech = 0
|
211
|
+
hdbits_cookies = ""
|
212
|
+
[RARBG]
|
213
|
+
rarbg = 0
|
214
|
+
rarbg_name = Rarbg
|
215
|
+
rarbg_url = https://rarbg.com
|
216
|
+
rarbg_search_mode = eponly
|
217
|
+
rarbg_search_fallback = 0
|
218
|
+
rarbg_enable_daily = 1
|
219
|
+
rarbg_enable_backlog = 1
|
220
|
+
rarbg_enable_manualsearch = 1
|
221
|
+
rarbg_enable_search_delay = 0
|
222
|
+
rarbg_search_delay = 480
|
223
|
+
rarbg_ranked = 1
|
224
|
+
rarbg_sorting = seeders
|
225
|
+
rarbg_ratio = ""
|
226
|
+
rarbg_minseed = 1
|
227
|
+
rarbg_minleech = 0
|
228
|
+
rarbg_cookies = ""
|
229
|
+
[ABNORMAL]
|
230
|
+
abnormal = 0
|
231
|
+
abnormal_name = ABNormal
|
232
|
+
abnormal_url = https://abnormal.ws
|
233
|
+
abnormal_username = ""
|
234
|
+
abnormal_search_mode = eponly
|
235
|
+
abnormal_search_fallback = 0
|
236
|
+
abnormal_enable_daily = 1
|
237
|
+
abnormal_enable_backlog = 1
|
238
|
+
abnormal_enable_manualsearch = 1
|
239
|
+
abnormal_enable_search_delay = 0
|
240
|
+
abnormal_search_delay = 480
|
241
|
+
abnormal_password = ""
|
242
|
+
abnormal_ratio = ""
|
243
|
+
abnormal_minseed = 1
|
244
|
+
abnormal_minleech = 0
|
245
|
+
abnormal_cookies = ""
|
246
|
+
[NZBS_ORG]
|
247
|
+
nzbs_org = 0
|
248
|
+
nzbs_org_name = NZBs.org
|
249
|
+
nzbs_org_url = https://nzbs.org/
|
250
|
+
nzbs_org_api_key = ""
|
251
|
+
nzbs_org_search_mode = eponly
|
252
|
+
nzbs_org_search_fallback = 0
|
253
|
+
nzbs_org_enable_daily = 1
|
254
|
+
nzbs_org_enable_backlog = 1
|
255
|
+
nzbs_org_enable_manualsearch = 1
|
256
|
+
nzbs_org_enable_search_delay = 0
|
257
|
+
nzbs_org_search_delay = 480
|
258
|
+
nzbs_org_cat_ids = ,
|
259
|
+
[ALPHARATIO]
|
260
|
+
alpharatio = 0
|
261
|
+
alpharatio_name = AlphaRatio
|
262
|
+
alpharatio_url = https://alpharatio.cc
|
263
|
+
alpharatio_username = ""
|
264
|
+
alpharatio_search_mode = eponly
|
265
|
+
alpharatio_search_fallback = 0
|
266
|
+
alpharatio_enable_daily = 1
|
267
|
+
alpharatio_enable_backlog = 1
|
268
|
+
alpharatio_enable_manualsearch = 1
|
269
|
+
alpharatio_enable_search_delay = 0
|
270
|
+
alpharatio_search_delay = 480
|
271
|
+
alpharatio_password = ""
|
272
|
+
alpharatio_ratio = ""
|
273
|
+
alpharatio_minseed = 1
|
274
|
+
alpharatio_minleech = 0
|
275
|
+
alpharatio_cookies = ""
|
276
|
+
[SCENETIME]
|
277
|
+
scenetime = 0
|
278
|
+
scenetime_name = SceneTime
|
279
|
+
scenetime_url = https://www.scenetime.com
|
280
|
+
scenetime_search_mode = eponly
|
281
|
+
scenetime_search_fallback = 0
|
282
|
+
scenetime_enable_daily = 1
|
283
|
+
scenetime_enable_backlog = 1
|
284
|
+
scenetime_enable_manualsearch = 1
|
285
|
+
scenetime_enable_search_delay = 0
|
286
|
+
scenetime_search_delay = 480
|
287
|
+
scenetime_ratio = ""
|
288
|
+
scenetime_minseed = 1
|
289
|
+
scenetime_minleech = 0
|
290
|
+
scenetime_cookies = ""
|
291
|
+
[ANIMEBYTES]
|
292
|
+
animebytes = 0
|
293
|
+
animebytes_name = AnimeBytes
|
294
|
+
animebytes_url = https://animebytes.tv
|
295
|
+
animebytes_username = ""
|
296
|
+
animebytes_search_mode = eponly
|
297
|
+
animebytes_search_fallback = 0
|
298
|
+
animebytes_enable_daily = 1
|
299
|
+
animebytes_enable_backlog = 1
|
300
|
+
animebytes_enable_manualsearch = 1
|
301
|
+
animebytes_enable_search_delay = 0
|
302
|
+
animebytes_search_delay = 480
|
303
|
+
animebytes_password = ""
|
304
|
+
animebytes_ratio = ""
|
305
|
+
animebytes_minseed = 1
|
306
|
+
animebytes_minleech = 0
|
307
|
+
animebytes_cookies = ""
|
308
|
+
[BTN]
|
309
|
+
btn = 0
|
310
|
+
btn_name = BTN
|
311
|
+
btn_url = https://broadcasthe.net
|
312
|
+
btn_api_key = ""
|
313
|
+
btn_search_mode = eponly
|
314
|
+
btn_search_fallback = 0
|
315
|
+
btn_enable_daily = 1
|
316
|
+
btn_enable_backlog = 1
|
317
|
+
btn_enable_manualsearch = 1
|
318
|
+
btn_enable_search_delay = 0
|
319
|
+
btn_search_delay = 480
|
320
|
+
btn_ratio = ""
|
321
|
+
btn_minseed = 1
|
322
|
+
btn_minleech = 0
|
323
|
+
btn_cookies = ""
|
324
|
+
[SDBITS]
|
325
|
+
sdbits = 0
|
326
|
+
sdbits_name = SDBits
|
327
|
+
sdbits_url = http://sdbits.org
|
328
|
+
sdbits_username = ""
|
329
|
+
sdbits_search_mode = eponly
|
330
|
+
sdbits_search_fallback = 0
|
331
|
+
sdbits_enable_daily = 1
|
332
|
+
sdbits_enable_backlog = 1
|
333
|
+
sdbits_enable_manualsearch = 1
|
334
|
+
sdbits_enable_search_delay = 0
|
335
|
+
sdbits_search_delay = 480
|
336
|
+
sdbits_password = ""
|
337
|
+
sdbits_ratio = ""
|
338
|
+
sdbits_minseed = 1
|
339
|
+
sdbits_minleech = 0
|
340
|
+
sdbits_cookies = ""
|
341
|
+
[HDSPACE]
|
342
|
+
hdspace = 0
|
343
|
+
hdspace_name = HDSpace
|
344
|
+
hdspace_url = https://hd-space.org
|
345
|
+
hdspace_username = ""
|
346
|
+
hdspace_search_mode = eponly
|
347
|
+
hdspace_search_fallback = 0
|
348
|
+
hdspace_enable_daily = 1
|
349
|
+
hdspace_enable_backlog = 1
|
350
|
+
hdspace_enable_manualsearch = 1
|
351
|
+
hdspace_enable_search_delay = 0
|
352
|
+
hdspace_search_delay = 480
|
353
|
+
hdspace_password = ""
|
354
|
+
hdspace_ratio = ""
|
355
|
+
hdspace_minseed = 1
|
356
|
+
hdspace_minleech = 0
|
357
|
+
hdspace_cookies = ""
|
358
|
+
[TORRENTBYTES]
|
359
|
+
torrentbytes = 0
|
360
|
+
torrentbytes_name = TorrentBytes
|
361
|
+
torrentbytes_url = https://www.torrentbytes.net
|
362
|
+
torrentbytes_username = ""
|
363
|
+
torrentbytes_search_mode = eponly
|
364
|
+
torrentbytes_search_fallback = 0
|
365
|
+
torrentbytes_enable_daily = 1
|
366
|
+
torrentbytes_enable_backlog = 1
|
367
|
+
torrentbytes_enable_manualsearch = 1
|
368
|
+
torrentbytes_enable_search_delay = 0
|
369
|
+
torrentbytes_search_delay = 480
|
370
|
+
torrentbytes_password = ""
|
371
|
+
torrentbytes_ratio = ""
|
372
|
+
torrentbytes_minseed = 1
|
373
|
+
torrentbytes_minleech = 0
|
374
|
+
torrentbytes_freeleech = 0
|
375
|
+
torrentbytes_cookies = ""
|
376
|
+
[TORRENTING]
|
377
|
+
torrenting = 0
|
378
|
+
torrenting_name = Torrenting
|
379
|
+
torrenting_url = https://www.torrenting.com/
|
380
|
+
torrenting_search_mode = eponly
|
381
|
+
torrenting_search_fallback = 0
|
382
|
+
torrenting_enable_daily = 1
|
383
|
+
torrenting_enable_backlog = 1
|
384
|
+
torrenting_enable_manualsearch = 1
|
385
|
+
torrenting_enable_search_delay = 0
|
386
|
+
torrenting_search_delay = 480
|
387
|
+
torrenting_ratio = ""
|
388
|
+
torrenting_minseed = 1
|
389
|
+
torrenting_minleech = 0
|
390
|
+
torrenting_cookies = ""
|
391
|
+
[ANIMETORRENTS]
|
392
|
+
animetorrents = 0
|
393
|
+
animetorrents_name = AnimeTorrents
|
394
|
+
animetorrents_url = http://animetorrents.me
|
395
|
+
animetorrents_username = ""
|
396
|
+
animetorrents_search_mode = eponly
|
397
|
+
animetorrents_search_fallback = 0
|
398
|
+
animetorrents_enable_daily = 1
|
399
|
+
animetorrents_enable_backlog = 1
|
400
|
+
animetorrents_enable_manualsearch = 1
|
401
|
+
animetorrents_enable_search_delay = 0
|
402
|
+
animetorrents_search_delay = 480
|
403
|
+
animetorrents_password = ""
|
404
|
+
animetorrents_ratio = ""
|
405
|
+
animetorrents_minseed = 1
|
406
|
+
animetorrents_minleech = 0
|
407
|
+
animetorrents_cookies = ""
|
408
|
+
[ELITETORRENT]
|
409
|
+
elitetorrent = 0
|
410
|
+
elitetorrent_name = EliteTorrent
|
411
|
+
elitetorrent_url = https://elitetorrent.eu
|
412
|
+
elitetorrent_search_mode = eponly
|
413
|
+
elitetorrent_search_fallback = 0
|
414
|
+
elitetorrent_enable_daily = 1
|
415
|
+
elitetorrent_enable_backlog = 1
|
416
|
+
elitetorrent_enable_manualsearch = 1
|
417
|
+
elitetorrent_enable_search_delay = 0
|
418
|
+
elitetorrent_search_delay = 480
|
419
|
+
elitetorrent_onlyspasearch = 0
|
420
|
+
elitetorrent_ratio = ""
|
421
|
+
elitetorrent_minseed = 1
|
422
|
+
elitetorrent_minleech = 0
|
423
|
+
elitetorrent_cookies = ""
|
424
|
+
[SPEEDCD]
|
425
|
+
speedcd = 0
|
426
|
+
speedcd_name = Speedcd
|
427
|
+
speedcd_url = https://speed.cd
|
428
|
+
speedcd_username = ""
|
429
|
+
speedcd_search_mode = eponly
|
430
|
+
speedcd_search_fallback = 0
|
431
|
+
speedcd_enable_daily = 1
|
432
|
+
speedcd_enable_backlog = 1
|
433
|
+
speedcd_enable_manualsearch = 1
|
434
|
+
speedcd_enable_search_delay = 0
|
435
|
+
speedcd_search_delay = 480
|
436
|
+
speedcd_password = ""
|
437
|
+
speedcd_ratio = ""
|
438
|
+
speedcd_minseed = 1
|
439
|
+
speedcd_minleech = 0
|
440
|
+
speedcd_freeleech = 0
|
441
|
+
speedcd_cookies = ""
|
442
|
+
[TNTVILLAGE]
|
443
|
+
tntvillage = 0
|
444
|
+
tntvillage_name = TNTVillage
|
445
|
+
tntvillage_url = http://forum.tntvillage.scambioetico.org/
|
446
|
+
tntvillage_username = ""
|
447
|
+
tntvillage_search_mode = eponly
|
448
|
+
tntvillage_search_fallback = 0
|
449
|
+
tntvillage_enable_daily = 1
|
450
|
+
tntvillage_enable_backlog = 1
|
451
|
+
tntvillage_enable_manualsearch = 1
|
452
|
+
tntvillage_enable_search_delay = 0
|
453
|
+
tntvillage_search_delay = 480
|
454
|
+
tntvillage_password = ""
|
455
|
+
tntvillage_engrelease = 0
|
456
|
+
tntvillage_ratio = ""
|
457
|
+
tntvillage_minseed = 1
|
458
|
+
tntvillage_minleech = 0
|
459
|
+
tntvillage_subtitle = 0
|
460
|
+
tntvillage_cookies = ""
|
461
|
+
[XTHOR]
|
462
|
+
xthor = 0
|
463
|
+
xthor_name = Xthor
|
464
|
+
xthor_url = https://xthor.to
|
465
|
+
xthor_search_mode = eponly
|
466
|
+
xthor_search_fallback = 0
|
467
|
+
xthor_enable_daily = 1
|
468
|
+
xthor_enable_backlog = 1
|
469
|
+
xthor_enable_manualsearch = 1
|
470
|
+
xthor_enable_search_delay = 0
|
471
|
+
xthor_search_delay = 480
|
472
|
+
xthor_passkey = ""
|
473
|
+
xthor_confirmed = 1
|
474
|
+
xthor_ratio = ""
|
475
|
+
xthor_minseed = 1
|
476
|
+
xthor_minleech = 0
|
477
|
+
xthor_freeleech = 0
|
478
|
+
xthor_cookies = ""
|
479
|
+
[SHAZBAT_TV]
|
480
|
+
shazbat_tv = 0
|
481
|
+
shazbat_tv_name = Shazbat.tv
|
482
|
+
shazbat_tv_url = http://www.shazbat.tv
|
483
|
+
shazbat_tv_search_mode = eponly
|
484
|
+
shazbat_tv_search_fallback = 0
|
485
|
+
shazbat_tv_enable_daily = 1
|
486
|
+
shazbat_tv_enable_backlog = 0
|
487
|
+
shazbat_tv_enable_manualsearch = 1
|
488
|
+
shazbat_tv_enable_search_delay = 0
|
489
|
+
shazbat_tv_search_delay = 480
|
490
|
+
shazbat_tv_passkey = ""
|
491
|
+
shazbat_tv_ratio = ""
|
492
|
+
shazbat_tv_options = ""
|
493
|
+
shazbat_tv_cookies = ""
|
494
|
+
[BITHDTV]
|
495
|
+
bithdtv = 0
|
496
|
+
bithdtv_name = BITHDTV
|
497
|
+
bithdtv_url = https://www.bit-hdtv.com/
|
498
|
+
bithdtv_search_mode = eponly
|
499
|
+
bithdtv_search_fallback = 0
|
500
|
+
bithdtv_enable_daily = 1
|
501
|
+
bithdtv_enable_backlog = 1
|
502
|
+
bithdtv_enable_manualsearch = 1
|
503
|
+
bithdtv_enable_search_delay = 0
|
504
|
+
bithdtv_search_delay = 480
|
505
|
+
bithdtv_ratio = ""
|
506
|
+
bithdtv_minseed = 1
|
507
|
+
bithdtv_minleech = 0
|
508
|
+
bithdtv_freeleech = 0
|
509
|
+
bithdtv_cookies = ""
|
510
|
+
[PRIVATEHD]
|
511
|
+
privatehd = 0
|
512
|
+
privatehd_name = PrivateHD
|
513
|
+
privatehd_url = https://privatehd.to
|
514
|
+
privatehd_username = ""
|
515
|
+
privatehd_search_mode = eponly
|
516
|
+
privatehd_search_fallback = 0
|
517
|
+
privatehd_enable_daily = 1
|
518
|
+
privatehd_enable_backlog = 1
|
519
|
+
privatehd_enable_manualsearch = 1
|
520
|
+
privatehd_enable_search_delay = 0
|
521
|
+
privatehd_search_delay = 480
|
522
|
+
privatehd_password = ""
|
523
|
+
privatehd_ratio = ""
|
524
|
+
privatehd_cookies = ""
|
525
|
+
[YGGTORRENT]
|
526
|
+
yggtorrent = 0
|
527
|
+
yggtorrent_name = Yggtorrent
|
528
|
+
yggtorrent_url = https://yggtorrent.com
|
529
|
+
yggtorrent_username = ""
|
530
|
+
yggtorrent_search_mode = eponly
|
531
|
+
yggtorrent_search_fallback = 0
|
532
|
+
yggtorrent_enable_daily = 1
|
533
|
+
yggtorrent_enable_backlog = 1
|
534
|
+
yggtorrent_enable_manualsearch = 1
|
535
|
+
yggtorrent_enable_search_delay = 0
|
536
|
+
yggtorrent_search_delay = 480
|
537
|
+
yggtorrent_password = ""
|
538
|
+
yggtorrent_ratio = ""
|
539
|
+
yggtorrent_minseed = 1
|
540
|
+
yggtorrent_minleech = 0
|
541
|
+
yggtorrent_cookies = ""
|
542
|
+
[MORETHANTV]
|
543
|
+
morethantv = 0
|
544
|
+
morethantv_name = MoreThanTV
|
545
|
+
morethantv_url = https://www.morethan.tv/
|
546
|
+
morethantv_username = ""
|
547
|
+
morethantv_search_mode = eponly
|
548
|
+
morethantv_search_fallback = 0
|
549
|
+
morethantv_enable_daily = 1
|
550
|
+
morethantv_enable_backlog = 1
|
551
|
+
morethantv_enable_manualsearch = 1
|
552
|
+
morethantv_enable_search_delay = 0
|
553
|
+
morethantv_search_delay = 480
|
554
|
+
morethantv_password = ""
|
555
|
+
morethantv_ratio = ""
|
556
|
+
morethantv_minseed = 1
|
557
|
+
morethantv_minleech = 0
|
558
|
+
morethantv_cookies = ""
|
559
|
+
[TVCHAOSUK]
|
560
|
+
tvchaosuk = 0
|
561
|
+
tvchaosuk_name = TvChaosUK
|
562
|
+
tvchaosuk_url = https://www.tvchaosuk.com
|
563
|
+
tvchaosuk_username = ""
|
564
|
+
tvchaosuk_search_mode = eponly
|
565
|
+
tvchaosuk_search_fallback = 0
|
566
|
+
tvchaosuk_enable_daily = 1
|
567
|
+
tvchaosuk_enable_backlog = 1
|
568
|
+
tvchaosuk_enable_manualsearch = 1
|
569
|
+
tvchaosuk_enable_search_delay = 0
|
570
|
+
tvchaosuk_search_delay = 480
|
571
|
+
tvchaosuk_password = ""
|
572
|
+
tvchaosuk_ratio = ""
|
573
|
+
tvchaosuk_minseed = 1
|
574
|
+
tvchaosuk_minleech = 0
|
575
|
+
tvchaosuk_freeleech = 0
|
576
|
+
tvchaosuk_cookies = ""
|
577
|
+
[BINSEARCH]
|
578
|
+
binsearch = 0
|
579
|
+
binsearch_name = BinSearch
|
580
|
+
binsearch_url = https://www.binsearch.info
|
581
|
+
binsearch_search_mode = eponly
|
582
|
+
binsearch_search_fallback = 0
|
583
|
+
binsearch_enable_daily = 1
|
584
|
+
binsearch_enable_backlog = 1
|
585
|
+
binsearch_enable_manualsearch = 1
|
586
|
+
binsearch_enable_search_delay = 0
|
587
|
+
binsearch_search_delay = 480
|
588
|
+
[OMGWTFNZBS]
|
589
|
+
omgwtfnzbs = 0
|
590
|
+
omgwtfnzbs_name = Omgwtfnzbs
|
591
|
+
omgwtfnzbs_url = https://api.omgwtfnzbs.me/
|
592
|
+
omgwtfnzbs_api_key = ""
|
593
|
+
omgwtfnzbs_search_mode = eponly
|
594
|
+
omgwtfnzbs_search_fallback = 0
|
595
|
+
omgwtfnzbs_enable_daily = 1
|
596
|
+
omgwtfnzbs_enable_backlog = 1
|
597
|
+
omgwtfnzbs_enable_manualsearch = 1
|
598
|
+
omgwtfnzbs_enable_search_delay = 0
|
599
|
+
omgwtfnzbs_search_delay = 480
|
600
|
+
omgwtfnzbs_cat_ids = ,
|
601
|
+
[IPTORRENTS]
|
602
|
+
iptorrents = 0
|
603
|
+
iptorrents_name = IPTorrents
|
604
|
+
iptorrents_url = https://iptorrents.eu
|
605
|
+
iptorrents_search_mode = eponly
|
606
|
+
iptorrents_search_fallback = 0
|
607
|
+
iptorrents_enable_daily = 1
|
608
|
+
iptorrents_enable_backlog = 1
|
609
|
+
iptorrents_enable_manualsearch = 1
|
610
|
+
iptorrents_enable_search_delay = 0
|
611
|
+
iptorrents_search_delay = 480
|
612
|
+
iptorrents_ratio = ""
|
613
|
+
iptorrents_minseed = 1
|
614
|
+
iptorrents_minleech = 0
|
615
|
+
iptorrents_freeleech = 0
|
616
|
+
iptorrents_cookies = ""
|
617
|
+
[DANISHBITS]
|
618
|
+
danishbits = 0
|
619
|
+
danishbits_name = Danishbits
|
620
|
+
danishbits_url = https://danishbits.org
|
621
|
+
danishbits_username = ""
|
622
|
+
danishbits_search_mode = eponly
|
623
|
+
danishbits_search_fallback = 0
|
624
|
+
danishbits_enable_daily = 1
|
625
|
+
danishbits_enable_backlog = 1
|
626
|
+
danishbits_enable_manualsearch = 1
|
627
|
+
danishbits_enable_search_delay = 0
|
628
|
+
danishbits_search_delay = 480
|
629
|
+
danishbits_passkey = ""
|
630
|
+
danishbits_ratio = ""
|
631
|
+
danishbits_minseed = 1
|
632
|
+
danishbits_minleech = 0
|
633
|
+
danishbits_freeleech = 0
|
634
|
+
danishbits_cookies = ""
|
635
|
+
[ANIZB]
|
636
|
+
anizb = 0
|
637
|
+
anizb_name = Anizb
|
638
|
+
anizb_url = https://anizb.org/
|
639
|
+
anizb_search_mode = eponly
|
640
|
+
anizb_search_fallback = 0
|
641
|
+
anizb_enable_daily = 1
|
642
|
+
anizb_enable_backlog = 1
|
643
|
+
anizb_enable_manualsearch = 1
|
644
|
+
anizb_enable_search_delay = 0
|
645
|
+
anizb_search_delay = 480
|
646
|
+
[NYAA]
|
647
|
+
nyaa = 0
|
648
|
+
nyaa_name = Nyaa
|
649
|
+
nyaa_url = https://nyaa.si
|
650
|
+
nyaa_search_mode = eponly
|
651
|
+
nyaa_search_fallback = 0
|
652
|
+
nyaa_enable_daily = 1
|
653
|
+
nyaa_enable_backlog = 1
|
654
|
+
nyaa_enable_manualsearch = 1
|
655
|
+
nyaa_enable_search_delay = 0
|
656
|
+
nyaa_search_delay = 480
|
657
|
+
nyaa_confirmed = 1
|
658
|
+
nyaa_ratio = ""
|
659
|
+
nyaa_minseed = 1
|
660
|
+
nyaa_minleech = 0
|
661
|
+
nyaa_cookies = ""
|
662
|
+
[TORRENTDAY]
|
663
|
+
torrentday = 0
|
664
|
+
torrentday_name = TorrentDay
|
665
|
+
torrentday_url = https://www.torrentday.com
|
666
|
+
torrentday_search_mode = eponly
|
667
|
+
torrentday_search_fallback = 0
|
668
|
+
torrentday_enable_daily = 1
|
669
|
+
torrentday_enable_backlog = 1
|
670
|
+
torrentday_enable_manualsearch = 1
|
671
|
+
torrentday_enable_search_delay = 0
|
672
|
+
torrentday_search_delay = 480
|
673
|
+
torrentday_ratio = ""
|
674
|
+
torrentday_minseed = 1
|
675
|
+
torrentday_minleech = 0
|
676
|
+
torrentday_freeleech = 0
|
677
|
+
torrentday_cookies = ""
|
678
|
+
[PRETOME]
|
679
|
+
pretome = 0
|
680
|
+
pretome_name = Pretome
|
681
|
+
pretome_url = https://pretome.info
|
682
|
+
pretome_username = ""
|
683
|
+
pretome_search_mode = eponly
|
684
|
+
pretome_search_fallback = 0
|
685
|
+
pretome_enable_daily = 1
|
686
|
+
pretome_enable_backlog = 1
|
687
|
+
pretome_enable_manualsearch = 1
|
688
|
+
pretome_enable_search_delay = 0
|
689
|
+
pretome_search_delay = 480
|
690
|
+
pretome_password = ""
|
691
|
+
pretome_pin = ""
|
692
|
+
pretome_ratio = ""
|
693
|
+
pretome_minseed = 1
|
694
|
+
pretome_minleech = 0
|
695
|
+
pretome_cookies = ""
|
696
|
+
[ELITETRACKER]
|
697
|
+
elitetracker = 0
|
698
|
+
elitetracker_name = EliteTracker
|
699
|
+
elitetracker_url = https://elite-tracker.net
|
700
|
+
elitetracker_username = ""
|
701
|
+
elitetracker_search_mode = eponly
|
702
|
+
elitetracker_search_fallback = 0
|
703
|
+
elitetracker_enable_daily = 1
|
704
|
+
elitetracker_enable_backlog = 1
|
705
|
+
elitetracker_enable_manualsearch = 1
|
706
|
+
elitetracker_enable_search_delay = 0
|
707
|
+
elitetracker_search_delay = 480
|
708
|
+
elitetracker_password = ""
|
709
|
+
elitetracker_ratio = ""
|
710
|
+
elitetracker_minseed = 1
|
711
|
+
elitetracker_minleech = 0
|
712
|
+
elitetracker_freeleech = 0
|
713
|
+
elitetracker_cookies = ""
|
714
|
+
[USENET_CRAWLER]
|
715
|
+
usenet_crawler = 0
|
716
|
+
usenet_crawler_name = Usenet-Crawler
|
717
|
+
usenet_crawler_url = https://api.usenet-crawler.com/
|
718
|
+
usenet_crawler_api_key = ""
|
719
|
+
usenet_crawler_search_mode = eponly
|
720
|
+
usenet_crawler_search_fallback = 0
|
721
|
+
usenet_crawler_enable_daily = 1
|
722
|
+
usenet_crawler_enable_backlog = 1
|
723
|
+
usenet_crawler_enable_manualsearch = 1
|
724
|
+
usenet_crawler_enable_search_delay = 0
|
725
|
+
usenet_crawler_search_delay = 480
|
726
|
+
usenet_crawler_cat_ids = ,
|
727
|
+
[NZBGEEK]
|
728
|
+
nzbgeek = 0
|
729
|
+
nzbgeek_name = NZBGeek
|
730
|
+
nzbgeek_url = https://api.nzbgeek.info/
|
731
|
+
nzbgeek_api_key = ""
|
732
|
+
nzbgeek_search_mode = eponly
|
733
|
+
nzbgeek_search_fallback = 0
|
734
|
+
nzbgeek_enable_daily = 1
|
735
|
+
nzbgeek_enable_backlog = 1
|
736
|
+
nzbgeek_enable_manualsearch = 1
|
737
|
+
nzbgeek_enable_search_delay = 0
|
738
|
+
nzbgeek_search_delay = 480
|
739
|
+
nzbgeek_cat_ids = ,
|
740
|
+
[NEWPCT]
|
741
|
+
newpct = 0
|
742
|
+
newpct_name = Newpct
|
743
|
+
newpct_url = http://www.tvsinpagar.com
|
744
|
+
newpct_search_mode = eponly
|
745
|
+
newpct_search_fallback = 0
|
746
|
+
newpct_enable_daily = 1
|
747
|
+
newpct_enable_backlog = 1
|
748
|
+
newpct_enable_manualsearch = 1
|
749
|
+
newpct_enable_search_delay = 0
|
750
|
+
newpct_search_delay = 480
|
751
|
+
newpct_onlyspasearch = 0
|
752
|
+
newpct_ratio = ""
|
753
|
+
newpct_cookies = ""
|
754
|
+
[TOKYOTOSHOKAN]
|
755
|
+
tokyotoshokan = 0
|
756
|
+
tokyotoshokan_name = TokyoToshokan
|
757
|
+
tokyotoshokan_url = http://tokyotosho.info/
|
758
|
+
tokyotoshokan_search_mode = eponly
|
759
|
+
tokyotoshokan_search_fallback = 0
|
760
|
+
tokyotoshokan_enable_daily = 1
|
761
|
+
tokyotoshokan_enable_backlog = 1
|
762
|
+
tokyotoshokan_enable_manualsearch = 1
|
763
|
+
tokyotoshokan_enable_search_delay = 0
|
764
|
+
tokyotoshokan_search_delay = 480
|
765
|
+
tokyotoshokan_ratio = ""
|
766
|
+
tokyotoshokan_minseed = 1
|
767
|
+
tokyotoshokan_minleech = 0
|
768
|
+
tokyotoshokan_cookies = ""
|
769
|
+
[HDTORRENTS]
|
770
|
+
hdtorrents = 0
|
771
|
+
hdtorrents_name = HDTorrents
|
772
|
+
hdtorrents_url = https://hd-torrents.org/
|
773
|
+
hdtorrents_username = ""
|
774
|
+
hdtorrents_search_mode = eponly
|
775
|
+
hdtorrents_search_fallback = 0
|
776
|
+
hdtorrents_enable_daily = 1
|
777
|
+
hdtorrents_enable_backlog = 1
|
778
|
+
hdtorrents_enable_manualsearch = 1
|
779
|
+
hdtorrents_enable_search_delay = 0
|
780
|
+
hdtorrents_search_delay = 480
|
781
|
+
hdtorrents_password = ""
|
782
|
+
hdtorrents_ratio = ""
|
783
|
+
hdtorrents_minseed = 1
|
784
|
+
hdtorrents_minleech = 0
|
785
|
+
hdtorrents_freeleech = 0
|
786
|
+
hdtorrents_cookies = ""
|
787
|
+
[THEPIRATEBAY]
|
788
|
+
thepiratebay = 0
|
789
|
+
thepiratebay_name = ThePirateBay
|
790
|
+
thepiratebay_url = https://thepiratebay.org
|
791
|
+
thepiratebay_search_mode = eponly
|
792
|
+
thepiratebay_search_fallback = 0
|
793
|
+
thepiratebay_enable_daily = 1
|
794
|
+
thepiratebay_enable_backlog = 1
|
795
|
+
thepiratebay_enable_manualsearch = 1
|
796
|
+
thepiratebay_enable_search_delay = 0
|
797
|
+
thepiratebay_search_delay = 480
|
798
|
+
thepiratebay_custom_url = ""
|
799
|
+
thepiratebay_confirmed = 1
|
800
|
+
thepiratebay_ratio = ""
|
801
|
+
thepiratebay_minseed = 1
|
802
|
+
thepiratebay_minleech = 0
|
803
|
+
thepiratebay_cookies = ""
|
804
|
+
[TORRENT9]
|
805
|
+
torrent9 = 0
|
806
|
+
torrent9_name = Torrent9
|
807
|
+
torrent9_url = http://www.torrent9.red
|
808
|
+
torrent9_search_mode = eponly
|
809
|
+
torrent9_search_fallback = 0
|
810
|
+
torrent9_enable_daily = 1
|
811
|
+
torrent9_enable_backlog = 1
|
812
|
+
torrent9_enable_manualsearch = 1
|
813
|
+
torrent9_enable_search_delay = 0
|
814
|
+
torrent9_search_delay = 480
|
815
|
+
torrent9_ratio = ""
|
816
|
+
torrent9_minseed = 1
|
817
|
+
torrent9_minleech = 0
|
818
|
+
torrent9_cookies = ""
|
819
|
+
[BITCANNON]
|
820
|
+
bitcannon = 0
|
821
|
+
bitcannon_name = BitCannon
|
822
|
+
bitcannon_url = ""
|
823
|
+
bitcannon_api_key = ""
|
824
|
+
bitcannon_search_mode = eponly
|
825
|
+
bitcannon_search_fallback = 0
|
826
|
+
bitcannon_enable_daily = 1
|
827
|
+
bitcannon_enable_backlog = 1
|
828
|
+
bitcannon_enable_manualsearch = 1
|
829
|
+
bitcannon_enable_search_delay = 0
|
830
|
+
bitcannon_search_delay = 480
|
831
|
+
bitcannon_custom_url = ""
|
832
|
+
bitcannon_ratio = ""
|
833
|
+
bitcannon_minseed = 1
|
834
|
+
bitcannon_minleech = 0
|
835
|
+
bitcannon_cookies = ""
|
836
|
+
[NEBULANCE]
|
837
|
+
nebulance = 0
|
838
|
+
nebulance_name = Nebulance
|
839
|
+
nebulance_url = https://nebulance.io/
|
840
|
+
nebulance_username = ""
|
841
|
+
nebulance_search_mode = eponly
|
842
|
+
nebulance_search_fallback = 0
|
843
|
+
nebulance_enable_daily = 1
|
844
|
+
nebulance_enable_backlog = 1
|
845
|
+
nebulance_enable_manualsearch = 1
|
846
|
+
nebulance_enable_search_delay = 0
|
847
|
+
nebulance_search_delay = 480
|
848
|
+
nebulance_password = ""
|
849
|
+
nebulance_ratio = ""
|
850
|
+
nebulance_minseed = 1
|
851
|
+
nebulance_minleech = 0
|
852
|
+
nebulance_freeleech = 0
|
853
|
+
nebulance_cookies = ""
|
854
|
+
[DOGNZB]
|
855
|
+
dognzb = 0
|
856
|
+
dognzb_name = DOGnzb
|
857
|
+
dognzb_url = https://api.dognzb.cr/
|
858
|
+
dognzb_api_key = ""
|
859
|
+
dognzb_search_mode = eponly
|
860
|
+
dognzb_search_fallback = 0
|
861
|
+
dognzb_enable_daily = 1
|
862
|
+
dognzb_enable_backlog = 1
|
863
|
+
dognzb_enable_manualsearch = 1
|
864
|
+
dognzb_enable_search_delay = 0
|
865
|
+
dognzb_search_delay = 480
|
866
|
+
dognzb_cat_ids = ,
|
867
|
+
[NZB_CAT]
|
868
|
+
nzb_cat = 0
|
869
|
+
nzb_cat_name = NZB.Cat
|
870
|
+
nzb_cat_url = https://nzb.cat/
|
871
|
+
nzb_cat_api_key = ""
|
872
|
+
nzb_cat_search_mode = eponly
|
873
|
+
nzb_cat_search_fallback = 0
|
874
|
+
nzb_cat_enable_daily = 1
|
875
|
+
nzb_cat_enable_backlog = 1
|
876
|
+
nzb_cat_enable_manualsearch = 1
|
877
|
+
nzb_cat_enable_search_delay = 0
|
878
|
+
nzb_cat_search_delay = 480
|
879
|
+
nzb_cat_cat_ids = ,
|
880
|
+
[HD4FREE]
|
881
|
+
hd4free = 0
|
882
|
+
hd4free_name = HD4Free
|
883
|
+
hd4free_url = https://hd4free.xyz
|
884
|
+
hd4free_api_key = ""
|
885
|
+
hd4free_username = ""
|
886
|
+
hd4free_search_mode = eponly
|
887
|
+
hd4free_search_fallback = 0
|
888
|
+
hd4free_enable_daily = 1
|
889
|
+
hd4free_enable_backlog = 1
|
890
|
+
hd4free_enable_manualsearch = 1
|
891
|
+
hd4free_enable_search_delay = 0
|
892
|
+
hd4free_search_delay = 480
|
893
|
+
hd4free_ratio = ""
|
894
|
+
hd4free_minseed = 1
|
895
|
+
hd4free_minleech = 0
|
896
|
+
hd4free_freeleech = 0
|
897
|
+
hd4free_cookies = ""
|
898
|
+
[TORRENTLEECH]
|
899
|
+
torrentleech = 0
|
900
|
+
torrentleech_name = TorrentLeech
|
901
|
+
torrentleech_url = https://classic.torrentleech.org
|
902
|
+
torrentleech_username = ""
|
903
|
+
torrentleech_search_mode = eponly
|
904
|
+
torrentleech_search_fallback = 0
|
905
|
+
torrentleech_enable_daily = 1
|
906
|
+
torrentleech_enable_backlog = 1
|
907
|
+
torrentleech_enable_manualsearch = 1
|
908
|
+
torrentleech_enable_search_delay = 0
|
909
|
+
torrentleech_search_delay = 480
|
910
|
+
torrentleech_password = ""
|
911
|
+
torrentleech_ratio = ""
|
912
|
+
torrentleech_minseed = 1
|
913
|
+
torrentleech_minleech = 0
|
914
|
+
torrentleech_cookies = ""
|
915
|
+
[ANIDEX]
|
916
|
+
anidex = 0
|
917
|
+
anidex_name = AniDex
|
918
|
+
anidex_url = https://anidex.info
|
919
|
+
anidex_search_mode = eponly
|
920
|
+
anidex_search_fallback = 0
|
921
|
+
anidex_enable_daily = 1
|
922
|
+
anidex_enable_backlog = 1
|
923
|
+
anidex_enable_manualsearch = 1
|
924
|
+
anidex_enable_search_delay = 0
|
925
|
+
anidex_search_delay = 480
|
926
|
+
anidex_ratio = ""
|
927
|
+
anidex_minseed = 1
|
928
|
+
anidex_minleech = 0
|
929
|
+
anidex_cookies = ""
|
930
|
+
[LIMETORRENTS]
|
931
|
+
limetorrents = 0
|
932
|
+
limetorrents_name = LimeTorrents
|
933
|
+
limetorrents_url = https://www.limetorrents.cc
|
934
|
+
limetorrents_search_mode = eponly
|
935
|
+
limetorrents_search_fallback = 0
|
936
|
+
limetorrents_enable_daily = 1
|
937
|
+
limetorrents_enable_backlog = 1
|
938
|
+
limetorrents_enable_manualsearch = 1
|
939
|
+
limetorrents_enable_search_delay = 0
|
940
|
+
limetorrents_search_delay = 480
|
941
|
+
limetorrents_confirmed = 1
|
942
|
+
limetorrents_ratio = ""
|
943
|
+
limetorrents_minseed = 1
|
944
|
+
limetorrents_minleech = 0
|
945
|
+
limetorrents_cookies = ""
|
946
|
+
[NORBITS]
|
947
|
+
norbits = 0
|
948
|
+
norbits_name = Norbits
|
949
|
+
norbits_url = https://norbits.net
|
950
|
+
norbits_username = ""
|
951
|
+
norbits_search_mode = eponly
|
952
|
+
norbits_search_fallback = 0
|
953
|
+
norbits_enable_daily = 1
|
954
|
+
norbits_enable_backlog = 1
|
955
|
+
norbits_enable_manualsearch = 1
|
956
|
+
norbits_enable_search_delay = 0
|
957
|
+
norbits_search_delay = 480
|
958
|
+
norbits_passkey = ""
|
959
|
+
norbits_ratio = ""
|
960
|
+
norbits_minseed = 1
|
961
|
+
norbits_minleech = 0
|
962
|
+
norbits_cookies = ""
|
963
|
+
[HEBITS]
|
964
|
+
hebits = 0
|
965
|
+
hebits_name = HeBits
|
966
|
+
hebits_url = https://hebits.net
|
967
|
+
hebits_username = ""
|
968
|
+
hebits_search_mode = eponly
|
969
|
+
hebits_search_fallback = 0
|
970
|
+
hebits_enable_daily = 1
|
971
|
+
hebits_enable_backlog = 1
|
972
|
+
hebits_enable_manualsearch = 1
|
973
|
+
hebits_enable_search_delay = 0
|
974
|
+
hebits_search_delay = 480
|
975
|
+
hebits_password = ""
|
976
|
+
hebits_ratio = ""
|
977
|
+
hebits_minseed = 1
|
978
|
+
hebits_minleech = 0
|
979
|
+
hebits_freeleech = 0
|
980
|
+
hebits_cookies = ""
|
981
|
+
[GFTRACKER]
|
982
|
+
gftracker = 0
|
983
|
+
gftracker_name = GFTracker
|
984
|
+
gftracker_url = https://www.thegft.org
|
985
|
+
gftracker_username = ""
|
986
|
+
gftracker_search_mode = eponly
|
987
|
+
gftracker_search_fallback = 0
|
988
|
+
gftracker_enable_daily = 1
|
989
|
+
gftracker_enable_backlog = 1
|
990
|
+
gftracker_enable_manualsearch = 1
|
991
|
+
gftracker_enable_search_delay = 0
|
992
|
+
gftracker_search_delay = 480
|
993
|
+
gftracker_password = ""
|
994
|
+
gftracker_ratio = ""
|
995
|
+
gftracker_minseed = 1
|
996
|
+
gftracker_minleech = 0
|
997
|
+
gftracker_cookies = ""
|
998
|
+
[ZOOQLE]
|
999
|
+
zooqle = 0
|
1000
|
+
zooqle_name = Zooqle
|
1001
|
+
zooqle_url = https://zooqle.com
|
1002
|
+
zooqle_search_mode = eponly
|
1003
|
+
zooqle_search_fallback = 0
|
1004
|
+
zooqle_enable_daily = 1
|
1005
|
+
zooqle_enable_backlog = 1
|
1006
|
+
zooqle_enable_manualsearch = 1
|
1007
|
+
zooqle_enable_search_delay = 0
|
1008
|
+
zooqle_search_delay = 480
|
1009
|
+
zooqle_ratio = ""
|
1010
|
+
zooqle_minseed = 1
|
1011
|
+
zooqle_minleech = 0
|
1012
|
+
zooqle_cookies = ""
|
1013
|
+
[ARCHETORRENT]
|
1014
|
+
archetorrent = 0
|
1015
|
+
archetorrent_name = ArcheTorrent
|
1016
|
+
archetorrent_url = https://www.archetorrent.com/
|
1017
|
+
archetorrent_username = ""
|
1018
|
+
archetorrent_search_mode = eponly
|
1019
|
+
archetorrent_search_fallback = 0
|
1020
|
+
archetorrent_enable_daily = 1
|
1021
|
+
archetorrent_enable_backlog = 1
|
1022
|
+
archetorrent_enable_manualsearch = 1
|
1023
|
+
archetorrent_enable_search_delay = 0
|
1024
|
+
archetorrent_search_delay = 480
|
1025
|
+
archetorrent_password = ""
|
1026
|
+
archetorrent_ratio = ""
|
1027
|
+
archetorrent_minseed = 1
|
1028
|
+
archetorrent_minleech = 0
|
1029
|
+
archetorrent_freeleech = 0
|
1030
|
+
archetorrent_cookies = ""
|
1031
|
+
[NZBs]
|
1032
|
+
nzbs = 0
|
1033
|
+
nzbs_uid = ""
|
1034
|
+
nzbs_hash = ""
|
1035
|
+
[Newzbin]
|
1036
|
+
newzbin = 0
|
1037
|
+
newzbin_username = ""
|
1038
|
+
newzbin_password = ""
|
1039
|
+
[SABnzbd]
|
1040
|
+
sab_username = ""
|
1041
|
+
sab_password = ""
|
1042
|
+
sab_apikey = ""
|
1043
|
+
sab_category = tv
|
1044
|
+
sab_category_backlog = tv
|
1045
|
+
sab_category_anime = anime
|
1046
|
+
sab_category_anime_backlog = anime
|
1047
|
+
sab_host = ""
|
1048
|
+
sab_forced = 0
|
1049
|
+
[NZBget]
|
1050
|
+
nzbget_username = nzbget
|
1051
|
+
nzbget_password = tegbzn6789
|
1052
|
+
nzbget_category = tv
|
1053
|
+
nzbget_category_backlog = tv
|
1054
|
+
nzbget_category_anime = anime
|
1055
|
+
nzbget_category_anime_backlog = anime
|
1056
|
+
nzbget_host = ""
|
1057
|
+
nzbget_use_https = 0
|
1058
|
+
nzbget_priority = 100
|
1059
|
+
[TORRENT]
|
1060
|
+
torrent_username = ""
|
1061
|
+
torrent_password = ""
|
1062
|
+
torrent_host = ""
|
1063
|
+
torrent_path = ""
|
1064
|
+
torrent_seed_time = 0
|
1065
|
+
torrent_paused = 0
|
1066
|
+
torrent_high_bandwidth = 0
|
1067
|
+
torrent_label = ""
|
1068
|
+
torrent_label_anime = ""
|
1069
|
+
torrent_verify_cert = 0
|
1070
|
+
torrent_rpcurl = transmission
|
1071
|
+
torrent_auth_type = ""
|
1072
|
+
torrent_seed_location = ""
|
1073
|
+
[KODI]
|
1074
|
+
use_kodi = 0
|
1075
|
+
kodi_always_on = 1
|
1076
|
+
kodi_notify_onsnatch = 0
|
1077
|
+
kodi_notify_ondownload = 0
|
1078
|
+
kodi_notify_onsubtitledownload = 0
|
1079
|
+
kodi_update_library = 0
|
1080
|
+
kodi_update_full = 0
|
1081
|
+
kodi_update_onlyfirst = 0
|
1082
|
+
kodi_host = ,
|
1083
|
+
kodi_username = ""
|
1084
|
+
kodi_password = ""
|
1085
|
+
kodi_clean_library = 0
|
1086
|
+
[Plex]
|
1087
|
+
use_plex_server = 0
|
1088
|
+
plex_notify_onsnatch = 0
|
1089
|
+
plex_notify_ondownload = 0
|
1090
|
+
plex_notify_onsubtitledownload = 0
|
1091
|
+
plex_update_library = 0
|
1092
|
+
plex_server_host = ,
|
1093
|
+
plex_server_token = ""
|
1094
|
+
plex_client_host = ,
|
1095
|
+
plex_server_username = ""
|
1096
|
+
plex_server_password = ""
|
1097
|
+
use_plex_client = 0
|
1098
|
+
plex_client_username = ""
|
1099
|
+
plex_client_password = ""
|
1100
|
+
plex_server_https = 0
|
1101
|
+
[Emby]
|
1102
|
+
use_emby = 0
|
1103
|
+
emby_host = ""
|
1104
|
+
emby_apikey = ""
|
1105
|
+
[Growl]
|
1106
|
+
use_growl = 0
|
1107
|
+
growl_notify_onsnatch = 0
|
1108
|
+
growl_notify_ondownload = 0
|
1109
|
+
growl_notify_onsubtitledownload = 0
|
1110
|
+
growl_host = ""
|
1111
|
+
growl_password = ""
|
1112
|
+
[FreeMobile]
|
1113
|
+
use_freemobile = 0
|
1114
|
+
freemobile_notify_onsnatch = 0
|
1115
|
+
freemobile_notify_ondownload = 0
|
1116
|
+
freemobile_notify_onsubtitledownload = 0
|
1117
|
+
freemobile_id = ""
|
1118
|
+
freemobile_apikey = ""
|
1119
|
+
[Telegram]
|
1120
|
+
use_telegram = 0
|
1121
|
+
telegram_notify_onsnatch = 0
|
1122
|
+
telegram_notify_ondownload = 0
|
1123
|
+
telegram_notify_onsubtitledownload = 0
|
1124
|
+
telegram_id = ""
|
1125
|
+
telegram_apikey = ""
|
1126
|
+
[Prowl]
|
1127
|
+
use_prowl = 0
|
1128
|
+
prowl_notify_onsnatch = 0
|
1129
|
+
prowl_notify_ondownload = 0
|
1130
|
+
prowl_notify_onsubtitledownload = 0
|
1131
|
+
prowl_api = ,
|
1132
|
+
prowl_priority = 0
|
1133
|
+
prowl_message_title = Medusa
|
1134
|
+
[Twitter]
|
1135
|
+
use_twitter = 0
|
1136
|
+
twitter_notify_onsnatch = 0
|
1137
|
+
twitter_notify_ondownload = 0
|
1138
|
+
twitter_notify_onsubtitledownload = 0
|
1139
|
+
twitter_username = ""
|
1140
|
+
twitter_password = ""
|
1141
|
+
twitter_prefix = Medusa
|
1142
|
+
twitter_dmto = ""
|
1143
|
+
twitter_usedm = 0
|
1144
|
+
[Boxcar2]
|
1145
|
+
use_boxcar2 = 0
|
1146
|
+
boxcar2_notify_onsnatch = 0
|
1147
|
+
boxcar2_notify_ondownload = 0
|
1148
|
+
boxcar2_notify_onsubtitledownload = 0
|
1149
|
+
boxcar2_accesstoken = ""
|
1150
|
+
[Pushover]
|
1151
|
+
use_pushover = 0
|
1152
|
+
pushover_notify_onsnatch = 0
|
1153
|
+
pushover_notify_ondownload = 0
|
1154
|
+
pushover_notify_onsubtitledownload = 0
|
1155
|
+
pushover_userkey = ""
|
1156
|
+
pushover_apikey = ""
|
1157
|
+
pushover_device = ,
|
1158
|
+
pushover_sound = pushover
|
1159
|
+
[Libnotify]
|
1160
|
+
use_libnotify = 0
|
1161
|
+
libnotify_notify_onsnatch = 0
|
1162
|
+
libnotify_notify_ondownload = 0
|
1163
|
+
libnotify_notify_onsubtitledownload = 0
|
1164
|
+
[NMJ]
|
1165
|
+
use_nmj = 0
|
1166
|
+
nmj_host = ""
|
1167
|
+
nmj_database = ""
|
1168
|
+
nmj_mount = ""
|
1169
|
+
[NMJv2]
|
1170
|
+
use_nmjv2 = 0
|
1171
|
+
nmjv2_host = ""
|
1172
|
+
nmjv2_database = ""
|
1173
|
+
nmjv2_dbloc = ""
|
1174
|
+
[Synology]
|
1175
|
+
use_synoindex = 0
|
1176
|
+
[SynologyNotifier]
|
1177
|
+
use_synologynotifier = 0
|
1178
|
+
synologynotifier_notify_onsnatch = 0
|
1179
|
+
synologynotifier_notify_ondownload = 0
|
1180
|
+
synologynotifier_notify_onsubtitledownload = 0
|
1181
|
+
[Slack]
|
1182
|
+
use_slack = 0
|
1183
|
+
slack_notify_snatch = 0
|
1184
|
+
slack_notify_download = 0
|
1185
|
+
slack_notify_onsubtitledownload = 0
|
1186
|
+
slack_webhook = ""
|
1187
|
+
[Trakt]
|
1188
|
+
use_trakt = 0
|
1189
|
+
trakt_username = ""
|
1190
|
+
trakt_access_token = ""
|
1191
|
+
trakt_refresh_token = ""
|
1192
|
+
trakt_remove_watchlist = 0
|
1193
|
+
trakt_remove_serieslist = 0
|
1194
|
+
trakt_remove_show_from_application = 0
|
1195
|
+
trakt_sync_watchlist = 0
|
1196
|
+
trakt_method_add = 0
|
1197
|
+
trakt_start_paused = 0
|
1198
|
+
trakt_use_recommended = 0
|
1199
|
+
trakt_sync = 0
|
1200
|
+
trakt_sync_remove = 0
|
1201
|
+
trakt_default_indexer = 1
|
1202
|
+
trakt_timeout = 30
|
1203
|
+
trakt_blacklist_name = ""
|
1204
|
+
[pyTivo]
|
1205
|
+
use_pytivo = 0
|
1206
|
+
pytivo_notify_onsnatch = 0
|
1207
|
+
pytivo_notify_ondownload = 0
|
1208
|
+
pytivo_notify_onsubtitledownload = 0
|
1209
|
+
pyTivo_update_library = 0
|
1210
|
+
pytivo_host = ""
|
1211
|
+
pytivo_share_name = ""
|
1212
|
+
pytivo_tivo_name = ""
|
1213
|
+
[NMA]
|
1214
|
+
use_nma = 0
|
1215
|
+
nma_notify_onsnatch = 0
|
1216
|
+
nma_notify_ondownload = 0
|
1217
|
+
nma_notify_onsubtitledownload = 0
|
1218
|
+
nma_api = ,
|
1219
|
+
nma_priority = 0
|
1220
|
+
[Pushalot]
|
1221
|
+
use_pushalot = 0
|
1222
|
+
pushalot_notify_onsnatch = 0
|
1223
|
+
pushalot_notify_ondownload = 0
|
1224
|
+
pushalot_notify_onsubtitledownload = 0
|
1225
|
+
pushalot_authorizationtoken = ""
|
1226
|
+
[Pushbullet]
|
1227
|
+
use_pushbullet = 0
|
1228
|
+
pushbullet_notify_onsnatch = 0
|
1229
|
+
pushbullet_notify_ondownload = 0
|
1230
|
+
pushbullet_notify_onsubtitledownload = 0
|
1231
|
+
pushbullet_api = ""
|
1232
|
+
pushbullet_device = ""
|
1233
|
+
[Email]
|
1234
|
+
use_email = 0
|
1235
|
+
email_notify_onsnatch = 0
|
1236
|
+
email_notify_ondownload = 0
|
1237
|
+
email_notify_onsubtitledownload = 0
|
1238
|
+
email_host = ""
|
1239
|
+
email_port = 25
|
1240
|
+
email_tls = 0
|
1241
|
+
email_user = ""
|
1242
|
+
email_password = ""
|
1243
|
+
email_from = ""
|
1244
|
+
email_list = ,
|
1245
|
+
email_subject = ""
|
1246
|
+
[Newznab]
|
1247
|
+
newznab_providers = ,
|
1248
|
+
[TorrentRss]
|
1249
|
+
torrentrss_providers = ,
|
1250
|
+
[GUI]
|
1251
|
+
theme_name = dark
|
1252
|
+
fanart_background = True
|
1253
|
+
fanart_background_opacity = 0.4
|
1254
|
+
home_layout = poster
|
1255
|
+
history_layout = detailed
|
1256
|
+
history_limit = 100
|
1257
|
+
display_show_specials = 1
|
1258
|
+
coming_eps_layout = banner
|
1259
|
+
coming_eps_display_paused = 0
|
1260
|
+
coming_eps_sort = date
|
1261
|
+
coming_eps_missed_range = 7
|
1262
|
+
fuzzy_dating = 0
|
1263
|
+
trim_zero = 0
|
1264
|
+
date_preset = %x
|
1265
|
+
time_preset = %I:%M:%S %p
|
1266
|
+
timezone_display = local
|
1267
|
+
poster_sortby = name
|
1268
|
+
poster_sortdir = 1
|
1269
|
+
layout_wide = False
|
1270
|
+
show_list_order = Anime, Series
|
1271
|
+
[Subtitles]
|
1272
|
+
use_subtitles = 0
|
1273
|
+
subtitles_erase_cache = 0
|
1274
|
+
subtitles_languages = ,
|
1275
|
+
SUBTITLES_SERVICES_LIST = ,
|
1276
|
+
SUBTITLES_SERVICES_ENABLED = ,
|
1277
|
+
subtitles_dir = ""
|
1278
|
+
subtitles_default = 0
|
1279
|
+
subtitles_history = 0
|
1280
|
+
subtitles_perfect_match = 1
|
1281
|
+
embedded_subtitles_all = 0
|
1282
|
+
subtitles_stop_at_first = 0
|
1283
|
+
embedded_subtitles_unknown_lang = 0
|
1284
|
+
subtitles_hearing_impaired = 0
|
1285
|
+
subtitles_finder_frequency = 1
|
1286
|
+
subtitles_multi = 1
|
1287
|
+
subtitles_extra_scripts = ,
|
1288
|
+
subtitles_pre_scripts = ,
|
1289
|
+
subtitles_keep_only_wanted = 0
|
1290
|
+
addic7ed_username = ""
|
1291
|
+
addic7ed_password = ""
|
1292
|
+
itasa_username = ""
|
1293
|
+
itasa_password = ""
|
1294
|
+
legendastv_username = ""
|
1295
|
+
legendastv_password = ""
|
1296
|
+
opensubtitles_username = ""
|
1297
|
+
opensubtitles_password = ""
|
1298
|
+
[FailedDownloads]
|
1299
|
+
use_failed_downloads = 0
|
1300
|
+
delete_failed = 0
|
1301
|
+
[ANIDB]
|
1302
|
+
use_anidb = 0
|
1303
|
+
anidb_username = ""
|
1304
|
+
anidb_password = ""
|
1305
|
+
anidb_use_mylist = 0
|
1306
|
+
[ANIME]
|
1307
|
+
anime_split_home = 0
|
1308
|
+
anime_split_home_in_tabs = 0
|