mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00
feat(irc): support optional SASL and NickServ auth (#511)
* feat(irc): support SASL and NickServ auth * feat(irc): add missing fields * feat(irc): support SASL and NickServ auth * feat(irc): add missing fields * feat(irc): add validation * feat(indexers): unify and set required values * feat(irc): add postgres migrations * feat(irc): use nick as handlerkey * feat(irc): use account for nickserv * fix(irc): pg db migration
This commit is contained in:
parent
4ef0408f33
commit
4bf023d030
65 changed files with 1404 additions and 631 deletions
|
@ -15,6 +15,7 @@ source: UNIT3D (F3NIX)
|
|||
settings:
|
||||
- name: rsskey
|
||||
type: secret
|
||||
required: true
|
||||
label: RSS key
|
||||
help: "Go to your profile, My Security, RSS Key and copy RSS key."
|
||||
|
||||
|
@ -29,22 +30,30 @@ irc:
|
|||
- Willie
|
||||
- Millie
|
||||
settings:
|
||||
- name: nickserv.account
|
||||
- name: nick
|
||||
type: text
|
||||
required: true
|
||||
label: Nick
|
||||
help: Bot nick. MUST follow format user|autodl
|
||||
|
||||
- name: auth.account
|
||||
type: text
|
||||
required: true
|
||||
label: NickServ Account
|
||||
help: NickServ account. Make sure to group your user and bot. Eg. user|autodl
|
||||
- name: nickserv.password
|
||||
help: NickServ account. Make sure to group your user and bot.
|
||||
|
||||
- name: auth.password
|
||||
type: secret
|
||||
required: true
|
||||
label: NickServ Password
|
||||
help: NickServ password
|
||||
|
||||
- name: invite_command
|
||||
type: secret
|
||||
default: "Millie announce ircKey"
|
||||
default: "Millie announce IRCKEY"
|
||||
required: true
|
||||
label: Invite command
|
||||
help: Invite auth with Millie.
|
||||
help: Invite auth with Millie. Replace IRCKEY.
|
||||
|
||||
parse:
|
||||
type: single
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue