1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-01-03 13:46:10 +00:00

assorted: adding comment re: using cookie method

This commit is contained in:
Garfield69 2024-10-14 16:54:31 +13:00
parent af6d1ac930
commit f4036273a6
8 changed files with 8 additions and 0 deletions

View file

@ -66,6 +66,7 @@ settings:
default: "Account retention rules:<ol><li>(Division Commander) Extreme User and above will be retained forever</li><li>(Brigadier Commander) Veteran Users and above will not be deleted after their account has been parked (in the Control Panel)</li><li>Users who have parked their accounts will be disabled if they do not log in for 180 consecutive days</li><li>Users with a non-parked account will have their account disabled if they do not log in for 90 consecutive days</li><li>Newly registered users who do not have traffic (i.e., upload and download data is 0) and do not log in for 5 consecutive days will be disabld.</li></ol>"
login:
# was converted to cookie method after it was restored the second time with #15321. But the login page looks like the standard nexus so maybe this could be restored to form method
method: cookie
inputs:
cookie: "{{ .Config.cookie }}"

View file

@ -76,6 +76,7 @@ settings:
default: For best results, change the <b>Torrents per page:</b> setting to <b>100</b> on your account profile.
login:
# using the cookie method because the site expects a single session only, so using browser and Jackett can cause a lockout
method: cookie
inputs:
cookie: "{{ .Config.cookie }}"

View file

@ -85,6 +85,7 @@ settings:
default: For best results, change the <b>Torrents per page:</b> setting to <b>100</b> on your account profile.
login:
# using cookie method due to #6460
method: cookie
inputs:
cookie: "{{ .Config.cookie }}"

View file

@ -69,6 +69,7 @@ settings:
default: "Retention rules:<ol><li>[Veteran User] and above will be retained forever.</li><li>[Elite User] and above will not be deleted after parking their accounts (in the Control Panel).</li><li>Users with a parked account will be deleted if they do not log in for 400 consecutive days.</li><li>Users with a non-parked account will be deleted if they do not log in for 150 consecutive days.</li><li>Users with no traffic (i.e. upload/download data are both 0) will have their accounts deleted if they do not log in for 40 consecutive days.</li></ol>"
login:
# using cookie method because the form method did not work when first the indexer was created.
method: cookie
inputs:
cookie: "{{ .Config.cookie }}"

View file

@ -33,6 +33,7 @@ caps:
music-search: [q]
settings:
# was switched from form method to cookie method on March 2019, reason was not recorded
- name: cookie
type: text
label: Cookie

View file

@ -100,6 +100,7 @@ settings:
default: false
login:
# switched from the form method to the cookie method due to #9270
method: cookie
inputs:
cookie: "{{ .Config.cookie }}"

View file

@ -61,6 +61,7 @@ settings:
default: "Accounts inactive (i.e. not logged in for a long time) are automatically deleted."
login:
# switched from form method to cookie method when it was restored the second time #15071 reason was not recorded
method: cookie
inputs:
cookie: "{{ .Config.cookie }}"

View file

@ -64,6 +64,7 @@ settings:
default: "If you are getting the error <b>Login failed: Selector \"a[href*=\"/logout.php?auth=\"]\" didn't match</b> then first access the site with your browser and check that you are not being forced to change your password because it has expired after 180 days."
login:
# using cookie method because login page has a custom captcha with multiple possible answers on individual radio buttons not supported via yaml
method: cookie
inputs:
cookie: "{{ .Config.cookie }}"