Ik ben er achter gekomen hoe het werkt.
De spotweb categorieën staan hier:
https://github.com/spotweb/spotweb/blob/develop/lib/SpotCategories.phpSpotweb doet reeds een 1e mapping in settings.php:
https://github.com/spotweb/spotweb/blob/develop/settings.php#L53-L83$settings['sabnzbd']['categories'] = [
0 => ['default' => 'movies', // Default categorie when nothing else matches
'a5' => 'books',
'a11' => 'books',
'd2' => 'anime',
'd11' => 'tv',
'd29' => 'anime',
'z3' => 'erotica', ],
1 => ['default' => 'music'],
2 => ['default' => 'games'],
3 => ['default' => 'apps',
'a3' => 'consoles',
'a4' => 'consoles',
'a5' => 'consoles',
'a6' => 'consoles',
'a7' => 'consoles',
'a8' => 'consoles',
'a9' => 'consoles',
'a10' => 'consoles',
'a11' => 'consoles',
'a12' => 'consoles',
'a13' => 'pda',
'a14' => 'pda',
'a15' => 'pda', ],
];
In je ownsettings.php kan je die overulen, zie ook deze post:
https://gathering.tweakers.net/forum/list_message/52674999#52674999Ik heb dus in Container Manager op mijn Synology een Terminal geopend naar de spotweb container.
Dan "cd app", want daarin staat Spotweb geïnstalleerd.
Dan "vi ownsettings.php" en daarin volgende inhoud gezet:
<?php
unset($settings['sabnzbd']['categories']);
$settings['sabnzbd']['categories'] = Array(
0 => Array('default' => "movies", # Default categorie when nothing else matches
'a5' => "books", # ePub, regel 110 in SpotCategories.php
'a11' => "magazines", # PDF, regel 116
'd11' => "tv", # Television, regel 162
'd31' => "comics", # ComicBook, regel 182
'd43' => "magazines", # Newspaper, regel 194
'd44' => "magazines"), # Magazine, regel 195
1 => Array('default' => 'music'), # Sound, regel 9
2 => Array('default' => 'games'), # Games, regel 10
3 => Array('default' => 'apps') # Applications, regel 11
);
( ' moet dus een quote ' zijn...)
En dan heb ik in Sabnzbd bij Categories de volgende categorieën:
- movies gaat naar mapje movies
- tv gaat naar mapje movies
- music gaat naar mapje music
- apps gaat naar mapje app
- books gaat naar mapje books
- comics gaat naar mapje comics
- magazines gaat naar mapje magazines