Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 47.02 KB | None | 0 0
  1. # Sample configuration file for NZBGet
  2. #
  3. # On POSIX put this file to one of the following locations:
  4. # ~/.nzbget
  5. # /etc/nzbget.conf
  6. # /usr/etc/nzbget.conf
  7. # /usr/local/etc/nzbget.conf
  8. # /opt/etc/nzbget.conf
  9. #
  10. # On Windows put this file in program's directory.
  11. #
  12. # You can also put the file into any location, if you specify the path to it
  13. # using switch "-c", e.g:
  14. # nzbget -c /home/user/myconfig.txt
  15.  
  16. # For quick start change the option MainDir and configure one news-server
  17.  
  18.  
  19. ##############################################################################
  20. ### PATHS ###
  21.  
  22. # Root directory for all tasks.
  23. #
  24. # On POSIX you can use "~" as alias for home directory (e.g. "~/download").
  25. # On Windows use absolute paths (e.g. "C:\Download").
  26. MainDir=/media/HDD1/Downloads/NZBs/NZBget
  27.  
  28. # Destination directory for downloaded files.
  29. #
  30. # If you want to distinguish between partially downloaded files and
  31. # completed downloads, use also option <InterDir>.
  32. DestDir=/media/HDD1/Downloads/Completed
  33.  
  34. # Directory to store intermediate files.
  35. #
  36. # If this option is set (not empty) the files are downloaded into
  37. # this directory first. After successful download of nzb-file (possibly
  38. # after par-repair) the files are moved to destination directory
  39. # (option <DestDir>). If download or unpack fail the files remain in
  40. # intermediate directory.
  41. #
  42. # Using of intermediate directory can significantly improve unpack
  43. # performance if you can put intermediate directory (option <InterDir>)
  44. # and destination directory (option <DestDir>) on separate physical
  45. # hard drives.
  46. #
  47. # NOTE: If the option <InterDir> is set to empty value the downloaded
  48. # files are put directly to destination directory (option <DestDir>).
  49. InterDir=/media/HDD1/Downloads/NZBs/NZBget/interdir
  50.  
  51. # Directory to monitor for incoming nzb-jobs.
  52. #
  53. # Can have subdirectories.
  54. # A nzb-file queued from a subdirectory will be automatically assigned to
  55. # category with the directory-name.
  56. NzbDir=/media/HDD1/Downloads/NZBs/NZBget/nzb
  57.  
  58. # Directory to store download queue.
  59. QueueDir=/media/HDD1/Downloads/NZBs/NZBget/queue
  60.  
  61. # Directory to store temporary files.
  62. TempDir=/media/HDD1/Downloads/NZBs/NZBget/tmp
  63.  
  64. # Lock-file for daemon-mode, POSIX only.
  65. #
  66. # If the option is not empty, NZBGet creates the file and writes process-id
  67. # (PID) into it. That info can be used in shell scripts.
  68. LockFile=/media/HDD1/Downloads/NZBs/NZBget/nzbget.lock
  69.  
  70. # Where to store log file, if it needs to be created.
  71. #
  72. # NOTE: See also option <CreateLog>.
  73. LogFile=/media/HDD1/Downloads/NZBs/NZBget/dst/nzbget.log
  74.  
  75. # Directory with web-interface files.
  76. #
  77. # Example: "WebDir=/usr/local/share/nzbget/webui".
  78. #
  79. # NOTE: To disable web-interface set the option to an empty value.
  80. # This however doesn't disable the built-in web-server completely because
  81. # it is also used to serve JSON-/XML-RPC requests.
  82. WebDir=/usr/local/share/nzbget/webui
  83.  
  84. ##############################################################################
  85. ### NEWS-SERVERS ###
  86.  
  87. # This section defines which servers NZBGet should connect to.
  88. #
  89. # The servers should be numbered subsequently without holes.
  90. # For example if you configure three servers you should name them as Server1,
  91. # Server2 and Server3. If you need to delete Server2 later you should also
  92. # change the name of Server3 to Server2. Otherwise it will not be properly
  93. # read from the config file. Server number doesn't affect its priority (level).
  94.  
  95. # Level (priority) of news server (0-99).
  96. #
  97. # The servers are ordered by their level. NZBGet first tries to download
  98. # an article from one (any) of level-0-servers. If that server fails,
  99. # NZBGet tries all other level-0-servers. If all servers fail, it proceeds
  100. # with the level-1-servers, etc.
  101. #
  102. # Put your major download servers at level 0 and your fill servers at
  103. # levels 1, 2, etc..
  104. #
  105. # Several servers with the same level may be defined, they have
  106. # the same priority.
  107. Server1.Level=0
  108.  
  109. # Group of news server (0-99).
  110. #
  111. # If you have multiple accounts with same conditions (retention, etc.)
  112. # on the same news server, set the same group (greater than 0) for all
  113. # of them. If download fails on one news server, NZBGet does not try
  114. # other servers from the same group.
  115. #
  116. # Value "0" means no group defined (default).
  117. Server1.Group=0
  118.  
  119. # Host name of news server.
  120. Server1.Host=news.newshosting.com
  121.  
  122. # Port to connect to (1-65535).
  123. Server1.Port=119
  124.  
  125.  
  126. # User name to use for authentication.
  127. Server1.Username=t800mc
  128.  
  129. # Password to use for authentication.
  130. Server1.Password=9218mc
  131.  
  132. # Server requires "Join Group"-command (yes, no).
  133. Server1.JoinGroup=yes
  134.  
  135. # Encrypted server connection (TLS/SSL) (yes, no).
  136. #
  137. # NOTE: By changing this option you should also change the option <ServerX.Port>
  138. # accordingly because unsecure and encrypted connections use different ports.
  139. Server1.Encryption=no
  140.  
  141. # Cipher to use for encrypted server connection.
  142. #
  143. # By default (when the option is empty) the underlying encryption library
  144. # chooses the cipher automatically. To achieve the best performance
  145. # however you can manually select a faster cipher.
  146. #
  147. # See http://nzbget.sourceforge.net/Choosing_a_cipher for details.
  148. #
  149. # NOTE: One of the fastest cipher is RC4, it also provides strong 128 bit
  150. # encryption. To select it use the cipher string "RC4-MD5" (if NZBGet was
  151. # configured to use OpenSSL) or "NONE:+VERS-TLS-ALL:+ARCFOUR-128:+RSA:+MD5:+COMP-ALL"
  152. # (if NZBGet was configured to use GnuTLS).
  153. #
  154. # NOTE: You may get a TLS handshake error if the news server does
  155. # not support the chosen cipher. You can also get an error "Could not
  156. # select cipher for TLS" if the cipher string is not valid.
  157. Server1.Cipher=
  158.  
  159. # Maximal number of simultaneous connections to this server (0-999).
  160. Server1.Connections=5
  161.  
  162. # Second server, on level 0.
  163.  
  164. #Server2.Level=0
  165. #Server2.Host=my2.newsserver.com
  166. #Server2.Port=119
  167. #Server2.Username=me
  168. #Server2.Password=mypass
  169. #Server2.JoinGroup=yes
  170. #Server2.Connections=4
  171.  
  172. # Third server, on level 1.
  173.  
  174. #Server3.Level=1
  175. #Server3.Host=fills.newsserver.com
  176. #Server3.Port=119
  177. #Server3.Username=me2
  178. #Server3.Password=mypass2
  179. #Server3.JoinGroup=yes
  180. #Server3.Connections=1
  181.  
  182.  
  183. ##############################################################################
  184. ### REMOTE CONTROL ###
  185.  
  186. # IP on which NZBGet server listen and which clients use to contact NZBGet.
  187. #
  188. # It could be a dns-hostname (e. g. "mypc") or an ip-address (e. g. "192.168.1.2" or
  189. # "127.0.0.1"). An IP-address is more effective because does not require dns-lookup.
  190. #
  191. # Your computer may have multiple network interfaces and therefore multiple IP
  192. # addresses. If you want NZBGet to listen to all interfaces and be available from
  193. # all IP-addresses use value "0.0.0.0".
  194. #
  195. # NOTE: When you start NZBGet as client (to send remote commands to NZBGet server) and
  196. # the option <ControlIP> is set to "0.0.0.0" the client will use IP "127.0.0.1".
  197. #
  198. # NOTE: If you set the option to "127.0.0.1" you will be able to connect to NZBGet
  199. # only from the computer running NZBGet. This restriction applies to web-interface too.
  200. ControlIP=0.0.0.0
  201.  
  202. # Port which NZBGet server and remote client use (1-65535).
  203. #
  204. # NOTE: The communication via this port is not encrypted. For encrypted
  205. # communication see option <SecurePort>.
  206. ControlPort=6789
  207.  
  208. # Password which NZBGet server and remote client use.
  209. #
  210. # For authorization to web-interface use predefined username "nzbget" (not configurable)
  211. # and the password defined here.
  212. ControlPassword=tegbzn6789
  213.  
  214. # Secure control of NZBGet server (yes, no).
  215. #
  216. # Activate the option if you want to access NZBGet built-in web-server
  217. # via HTTPS (web-interface and RPC). You should also provide certificate
  218. # and key files, see option <SecureCert> and option <SecureKey>.
  219. SecureControl=no
  220.  
  221. # Port which NZBGet server and remote client use for encrypted
  222. # communication (1-65535).
  223. SecurePort=6791
  224.  
  225. # Full path to certificate file for encrypted communication.
  226. SecureCert=
  227.  
  228. # Full path to key file for encrypted communication.
  229. SecureKey=
  230.  
  231.  
  232. ##############################################################################
  233. ### PERMISSIONS ###
  234.  
  235. # User name for daemon-mode, POSIX only.
  236. #
  237. # Set the user that the daemon normally runs at (POSIX in daemon-mode only).
  238. # Set MainDir with an absolute path to be sure where it will write.
  239. # This allows NZBGet daemon to be launched in rc.local (at boot), and
  240. # download items as a specific user id.
  241. #
  242. # NOTE: This option has effect only if the program was started from
  243. # root-account, otherwise it is ignored and the daemon runs under
  244. # current user id.
  245. DaemonUserName=root
  246.  
  247. # Specify default umask (affects file permissions) for newly created
  248. # files, POSIX only (000-1000).
  249. #
  250. # The value should be written in octal form (the same as for "umask" shell
  251. # command).
  252. # Empty value or value "1000" disable the setting of umask-mode; current
  253. # umask-mode (set via shell) is used in this case.
  254. UMask=1000
  255.  
  256.  
  257. ##############################################################################
  258. ### INCOMING NZBS ###
  259.  
  260. # Create subdirectory with category-name in destination-directory (yes, no).
  261. AppendCategoryDir=yes
  262.  
  263. # Create subdirectory with nzb-filename in destination-directory (yes, no).
  264. AppendNzbDir=yes
  265.  
  266. # How often incoming-directory (option <NzbDir>) must be checked for new
  267. # nzb-files (seconds).
  268. #
  269. # Value "0" disables the check.
  270. NzbDirInterval=5
  271.  
  272. # How old nzb-file should at least be for it to be loaded to queue (seconds).
  273. #
  274. # NZBGet checks if nzb-file was not modified in last few seconds, defined by
  275. # this option. That safety interval prevents the loading of files, which
  276. # were not yet completely saved to disk, for example if they are still being
  277. # downloaded in web-browser.
  278. NzbDirFileAge=60
  279.  
  280. # Automatic merging of nzb-files with the same filename (yes, no).
  281. #
  282. # A typical scenario: you put nzb-file into incoming directory, NZBGet adds
  283. # file to queue. You find out, that the file doesn't have par-files. You
  284. # find required par-files, put nzb-file with the par-files into incoming
  285. # directory, NZBGet adds it to queue as a separate group. You want the second
  286. # file to be merged with the first for parchecking to work properly. With
  287. # option "MergeNzb" NZBGet can merge files automatically. You only need to
  288. # save the second file under the same filename as the first one.
  289. MergeNzb=no
  290.  
  291. # Set path to program, that must be executed before any file in incoming
  292. # directory (option <NzbDir>) is processed.
  293. #
  294. # Example: "NzbProcess=~/nzbprocess.sh".
  295. #
  296. # That program can unpack archives which were put in incoming directory, make
  297. # filename cleanup, assign category and post-processing parameters to nzb-file
  298. # or do something else.
  299. #
  300. # INFO FOR DEVELOPERS:
  301. # NZBGet passes following arguments to nzbprocess-program as environment
  302. # variables:
  303. # NZBNP_DIRECTORY - path to directory, where file is located. It is a directory
  304. # specified by the option <NzbDir> or a subdirectory;
  305. # NZBNP_FILENAME - name of file to be processed;
  306. #
  307. # In addition to these arguments NZBGet passes all
  308. # nzbget.conf-options to nzbprocess-program as environment variables. These
  309. # variables have prefix "NZBOP_" and are written in UPPER CASE. For Example
  310. # option "ParRepair" is passed as environment variable "NZBOP_PARREPAIR".
  311. # The dots in option names are replaced with underscores, for example
  312. # "SERVER1_HOST". For options with predefined possible values (yes/no, etc.)
  313. # the values are passed always in lower case.
  314. #
  315. # The nzbprocess-script can assign category, priority and post-processing
  316. # parameters to the current nzb-file by printing special messages into
  317. # standard output (which is processed by NZBGet).
  318. #
  319. # To assign category use following syntax:
  320. # echo "[NZB] CATEGORY=my category";
  321. #
  322. # To assign priority:
  323. # echo "[NZB] PRIORITY=signed_integer_value";
  324. #
  325. # for example: to set priority higher than normal:
  326. # echo "[NZB] PRIORITY=50";
  327. #
  328. # another example: use a negative value for "lower than normal" priority:
  329. # echo "[NZB] PRIORITY=-100";
  330. #
  331. # To assign post-processing parameters:
  332. # echo "[NZB] NZBPR_myvar=my value";
  333. #
  334. # The prefix "NZBPR_" will be removed. In this example a post-processing
  335. # parameter with name "myvar" and value "my value" will be associated
  336. # with nzb-file.
  337. #
  338. # The nzbprocess-script can delete processed file, rename it or move somewhere.
  339. # After the calling of the script the file will be either added to queue
  340. # (if it was an nzb-file) or renamed by adding the extension ".processed".
  341. #
  342. # NOTE: Files with extensions ".processed", ".queued" and ".error" are skipped
  343. # during the directory scanning.
  344. #
  345. # NOTE: Files with extension ".nzb_processed" are not passed to
  346. # NzbProcess-script before adding to queue. This feature allows
  347. # NzbProcess-script to prevent the scanning of nzb-files extracted from
  348. # archives, if they were already processed by the script.
  349. NzbProcess=
  350.  
  351. # Set path to program, that must be executed after a nzb-file is added
  352. # to queue.
  353. #
  354. # This program is called each time a new nzb-file is added to queue: from
  355. # nzb incoming directory, via command line call "nzbget -A filename.nzb",
  356. # via RPC-method "append" or from web-interface.
  357. #
  358. # Example: "NzbAddedProcess=~/nzbaddedprocess.sh".
  359. #
  360. # That program can modify the files in download queue (for example
  361. # delete or pause all nfo, sfv, sample files) or do something else.
  362. #
  363. # INFO FOR DEVELOPERS:
  364. # NZBGet passes following arguments to nzbaddedprocess-program as environment
  365. # variables:
  366. # NZBNA_NZBNAME - name of nzb-group. This name can be used in calls
  367. # to nzbget edit-command using subswitch "-GN name";
  368. # NZBNA_FILENAME - filename of the nzb-file. If the file was added
  369. # from nzb-directory this is the fullname with path.
  370. # If the file was added via web-interface it contains
  371. # only filename without path;
  372. # NZBNA_CATEGORY - category of nzb-file (if assigned);
  373. # NZBNA_LASTID - the id of the last file in the nzb-file. This ID can
  374. # be used with calls to nzbget edit-command;
  375. # NZBNA_PRIORITY - priority (default is 0).
  376. #
  377. # In addition to these arguments NZBGet passes all
  378. # nzbget.conf-options to nzbaddedprocess-program as environment variables. These
  379. # variables have prefix "NZBOP_" and are written in UPPER CASE. For Example
  380. # option "ParRepair" is passed as environment variable "NZBOP_PARREPAIR".
  381. # The dots in option names are replaced with underscores, for example
  382. # "SERVER1_HOST". For options with predefined possible values (yes/no, etc.)
  383. # the values are passed always in lower case.
  384. #
  385. # Examples:
  386. # 1) pausing nzb-file using file-id:
  387. # "$NZBOP_APPBIN" -c "$NZBOP_CONFIGFILE" -E G P $NZBNA_LASTID
  388. #
  389. # 2) setting category using nzb-name:
  390. # "$NZBOP_APPBIN" -c "$NZBOP_CONFIGFILE" -E GN K "my cat" "$NZBNA_NZBNAME"
  391. #
  392. # 3) pausing files with extension "nzb":
  393. # "$NZBOP_APPBIN" -c "$NZBOP_CONFIGFILE" -E FR P "$NZBNA_NAME/.*\.nzb"
  394. NzbAddedProcess=
  395.  
  396. # Check for duplicate files (yes, no).
  397. #
  398. # If this option is enabled the program checks by adding of a new nzb-file:
  399. # 1) if nzb-file contains duplicate entries. This check aims on detecting
  400. # of reposted files (if first file was not fully uploaded);
  401. # If the program find two files with identical names, only the
  402. # biggest of these files will be added to queue;
  403. # 2) if download queue already contains file with the same name;
  404. # 3) if destination file on disk already exists.
  405. # In last two cases: if the file exists it will not be added to queue;
  406. #
  407. # If this option is disabled, all files are downloaded and duplicate files
  408. # are renamed to "filename_duplicate1".
  409. # Existing files are never deleted or overwritten.
  410. DupeCheck=yes
  411.  
  412.  
  413. ##############################################################################
  414. ### DOWNLOAD QUEUE ###
  415.  
  416. # Save download queue to disk (yes, no).
  417. #
  418. # This allows to reload it on next start.
  419. SaveQueue=yes
  420.  
  421. # Reload download queue on start, if it exists (yes, no).
  422. ReloadQueue=yes
  423.  
  424. # Reload url-queue on start, if it exists (yes, no).
  425. #
  426. # For this option to work the options <SaveQueue> and <ReloadQueue> must
  427. # be also enabled.
  428. ReloadUrlQueue=yes
  429.  
  430. # Reload Post-processor-queue on start, if it exists (yes, no).
  431. #
  432. # For this option to work the options <SaveQueue> and <ReloadQueue> must
  433. # be also enabled.
  434. ReloadPostQueue=yes
  435.  
  436. # Reuse articles saved in temp-directory from previous program start (yes, no).
  437. #
  438. # This allows to continue download of file, if program was exited before
  439. # the file was completed.
  440. ContinuePartial=yes
  441.  
  442. # Visibly rename broken files on download appending "_broken" (yes, no).
  443. #
  444. # Do not activate this option if par-check is enabled.
  445. RenameBroken=no
  446.  
  447. # Decode articles (yes, no).
  448. #
  449. # yes - decode articles using internal decoder (supports yEnc and UU formats);
  450. # no - the articles will not be decoded and joined. External programs
  451. # (like "uudeview") can be used to decode and join downloaded articles.
  452. # Also useful for debugging to look at article's source text.
  453. Decode=yes
  454.  
  455. # Write decoded articles directly into destination output file (yes, no).
  456. #
  457. # Files are posted to Usenet within artilce bodies. Each file typically
  458. # requires hundreds of articles.
  459. #
  460. # When option <DirectWrite> is disabled, the program downloads all articles
  461. # into temporary directory and then combine them into destination file.
  462. #
  463. # With this option enabled the program at first creates the output
  464. # destination file with required size (total size of all articles),
  465. # then writes on the fly decoded articles directly to the file
  466. # without creating of any temporary files.
  467. #
  468. # This may improve performance but depends on OS and file system ability to
  469. # instantly create large files without initializing them with nulls. Such
  470. # files are called sparse files and are supported by modern file systems
  471. # like EXT3 on Linux or NTFS on Windows.
  472. #
  473. # Using of this option reduces disk operations but may produce more fragmented
  474. # files (depends on disk driver), which may slow down the post-processing.
  475. # It's recommended to test how the option behave on your platform to find the
  476. # best setting.
  477. #
  478. # INFO: a particular test on a Linux router with EXT3-partition showed that
  479. # activating of this option results in up to 20% better performance during
  480. # downloading.
  481. #
  482. # NOTE: For test try to download few big nzb-collections (each 4GB or more)
  483. # and measure the time used for downloading and post-processing (use timestamps
  484. # in a log-file to determine when the post-processing was ended).
  485. #
  486. # NOTE: When option <DirectWrite> is enabled the temporary directory (option
  487. # <TempDir>) must be located on the same partition with destination directory
  488. # (option DestDir>) for better performance. If option <DirectWrite> is disabled
  489. # it's better to use different drives for temporary and destination directories.
  490. #
  491. # NOTE: If both options <DirectWrite> and <ContinuePartial> are enabled,
  492. # the program still creates empty article-files in temp-directory. They are used
  493. # by the option <ContinuePartial> to check if a certain article was downloaded.
  494. # To minimize disk-io it is recommended to disable option <ContinuePartial>,
  495. # if <DirectWrite> is enabled. Especially on a fast connections (where you
  496. # would want to activate <DirectWrite>) it should not be a problem to redownload
  497. # an interrupted file.
  498. DirectWrite=yes
  499.  
  500. # Check CRC of downloaded and decoded articles (yes, no).
  501. #
  502. # Normally this option should be enabled for better detecting of download
  503. # errors. However checking of CRC needs CPU time. On a fast connection and
  504. # slow CPU disabling of CRC-Check may improve performance.
  505. CrcCheck=yes
  506.  
  507. # How many retries should be attempted if a download error occurs (0-99).
  508. #
  509. # 1) If download fails because of "article or group not found error" the
  510. # program tries another news server.
  511. #
  512. # 2) If download fails because of interrupted connection, the program
  513. # tries the same server again until connection can be established.
  514. #
  515. # In both cases 1) and 2) option <Retries> is not used.
  516. #
  517. # If download however fails because of incomplete article, CRC-error or other
  518. # error not mentioned above the program tries to redownload the article from
  519. # the same news server as many times as defined in option <Retries>. If all
  520. # attempts fail the program tries another news server.
  521. Retries=3
  522.  
  523. # Set the interval between retries (seconds).
  524. RetryInterval=10
  525.  
  526. # Set connection timeout (seconds).
  527. ConnectionTimeout=60
  528.  
  529. # Timeout until a download-thread should be killed (seconds).
  530. #
  531. # This can help on hanging downloads, but is dangerous.
  532. # Do not use small values!
  533. TerminateTimeout=600
  534.  
  535. # Set the (approximate) maximum number of allowed threads (10-999).
  536. #
  537. # Sometimes under certain circumstances the program may create way to many
  538. # download threads. Most of them are in wait-state. That is not bad,
  539. # but threads are usually a limited resource. If a program creates to many
  540. # of them, operating system may kill it. The option <ThreadLimit> prevents that.
  541. #
  542. # NOTE: The number of threads is not the same as the number of connections
  543. # opened to NNTP-servers. Do not use the option <ThreadLimit> to limit the
  544. # number of connections. Use the appropriate options <ServerX.Connections>
  545. # instead.
  546. #
  547. # NOTE: The actual number of created threads can be slightly larger as
  548. # defined by the option. Important threads may be created even if the
  549. # number of threads is exceeded. The option prevents only the creation of
  550. # additional download threads.
  551. #
  552. # NOTE: In most cases you should leave the default value "100" unchanged.
  553. # However you may increase that value if you need more than 90 connections
  554. # (that's very unlikely) or decrease the value if the OS does not allow so
  555. # many threads. But the most OSes should not have problems with 100 threads.
  556. ThreadLimit=100
  557.  
  558. # Set the maximum download rate on program start (kilobytes/sec).
  559. #
  560. # Value "0" means no speed control.
  561. # The download rate can be changed later via remote calls.
  562. DownloadRate=0
  563.  
  564. # Accurate speed rate calculation (yes, no).
  565. #
  566. # During downloading using several connections the download threads may
  567. # interfere with each other when updating statistical data for speed
  568. # meter. This may cause small errors in current download speed reported
  569. # by the program. The speed meter recovers automatically from such errors
  570. # after max. 30 seconds (time window used for speed calculation).
  571. #
  572. # Enable the option to use thread synchronisation mechanisms in order to
  573. # provide absolutely accurate speed calculations.
  574. #
  575. # NOTE: Thread synchronisation increases CPU load and therefore can
  576. # decrease download speed. Do not activate this option on computers with
  577. # limited CPU power. Before activating the option it is recommended to
  578. # run tests to determine how the option affects the CPU usage and the
  579. # download speed on a particular system.
  580. AccurateRate=no
  581.  
  582. # Set the size of memory buffer used by writing the articles (bytes).
  583. #
  584. # Bigger values decrease disk-io, but increase memory usage.
  585. # Value "0" causes an OS-dependent default value to be used.
  586. # With value "-1" (which means "max/auto") the program sets the size of
  587. # buffer according to the size of current article (typically less than 500K).
  588. #
  589. # NOTE: The value must be written in bytes, do not use postfixes "K" or "M".
  590. #
  591. # NOTE: To calculate the memory usage multiply WriteBufferSize by max number
  592. # of connections, configured in section "NEWS-SERVERS".
  593. #
  594. # NOTE: Typical article's size not exceed 500000 bytes, so using bigger values
  595. # (like several megabytes) will just waste memory.
  596. #
  597. # NOTE: For desktop computers with large amount of memory value "-1" (max/auto)
  598. # is recommended, but for computers with very low memory (routers, NAS)
  599. # value "0" (default OS-dependent size) could be better alternative.
  600. #
  601. # NOTE: Write-buffer is managed by OS (system libraries) and therefore
  602. # the effect of the option is highly OS-dependent.
  603. WriteBufferSize=0
  604.  
  605. # Pause if disk space gets below this value (megabytes).
  606. #
  607. # Value "0" disables the check.
  608. # Only the disk space on the drive with <DestDir> is checked.
  609. # The drive with <TempDir> is not checked.
  610. DiskSpace=250
  611.  
  612. # Delete already downloaded files from disk, if the download of nzb-file was
  613. # cancelled (nzb-file was deleted from queue) (yes, no).
  614. #
  615. # NOTE: NZBGet does not delete files in a case if all remaining files in
  616. # queue are par-files. That prevents the accidental deletion if the option
  617. # <ParCleanupQueue> is disabled or if the program was interrupted during
  618. # parcheck and later restarted without reloading of post queue (option
  619. # <ReloadPostQueue> disabled).
  620. DeleteCleanupDisk=no
  621.  
  622. # Keep the history of downloaded nzb-files (days).
  623. #
  624. # Value "0" disables the history.
  625. #
  626. # NOTE: When a collection having paused files is added to history all remaining
  627. # files are moved from download queue to a list of parked files. It holds files
  628. # which could be required later if the collection will be moved back to
  629. # download queue for downloading of remaining files. The parked files still
  630. # consume some amount of memory and disk space. If the collection was downloaded
  631. # and successfully par-checked or postprocessed it is recommended to discard the
  632. # unneeded parked files before adding the collection to history. For par2-files
  633. # that can be achieved with the option <ParCleanupQueue>.
  634. KeepHistory=7
  635.  
  636. # Maximal number of simultaneous connections for nzb URL downloads (0-999).
  637. #
  638. # When NZB-files are added to queue via URL, the program downloads them
  639. # from the specified URL. The option limits the maximal number of connections
  640. # used for this purpose, when multiple URLs were added at the same time.
  641. UrlConnections=4
  642.  
  643.  
  644. ##############################################################################
  645. ### CATEGORIES ###
  646.  
  647. # This section defines categories available in web-interface.
  648.  
  649. # Category name.
  650. #
  651. # Each nzb-file can be assigned to a category.
  652. # Category name is passed to post-processing script and can be used by it
  653. # to perform category specific processing.
  654. Category1.Name=Movies
  655.  
  656. # Destination directory for this category.
  657. #
  658. # If this option is empty, then the default destination directory
  659. # (option <DestDir>) is used. In this case if the option <AppendCategoryDir>
  660. # is active, the program creates a subdirectory with category name within
  661. # destination directory.
  662. Category1.DestDir=/media/HDD1/Downloads/Complete/Movies
  663.  
  664. Category2.Name=TV
  665. Category3.Name=Music
  666. Category4.Name=Software
  667.  
  668.  
  669. ##############################################################################
  670. ### LOGGING ###
  671.  
  672. # Create log file (yes, no).
  673. CreateLog=yes
  674.  
  675. # Delete log file upon server start (only in server-mode) (yes, no).
  676. ResetLog=no
  677.  
  678. # How error messages must be printed (screen, log, both, none).
  679. ErrorTarget=both
  680.  
  681. # How warning messages must be printed (screen, log, both, none).
  682. WarningTarget=both
  683.  
  684. # How info messages must be printed (screen, log, both, none).
  685. InfoTarget=both
  686.  
  687. # How detail messages must be printed (screen, log, both, none).
  688. DetailTarget=both
  689.  
  690. # How debug messages must be printed (screen, log, both, none).
  691. #
  692. # Debug-messages can be printed only if the program was compiled in
  693. # debug-mode: "./configure --enable-debug".
  694. DebugTarget=both
  695.  
  696. # Set the default message-kind for output received from process-scripts
  697. # (PostProcess, NzbProcess, TaskX.Process) (detail, info, warning,
  698. # error, debug, none).
  699. #
  700. # NZBGet checks if the line written by the script to stdout or stderr starts
  701. # with special character-sequence, determining the message-kind, e.g.:
  702. # [INFO] bla-bla.
  703. # [DETAIL] bla-bla.
  704. # [WARNING] bla-bla.
  705. # [ERROR] bla-bla.
  706. # [DEBUG] bla-bla.
  707. #
  708. # If the message-kind was detected the text is added to log with detected type.
  709. # Otherwise the message becomes the default kind, specified in this option.
  710. ProcessLogKind=detail
  711.  
  712. # Number of messages stored in buffer and available for remote
  713. # clients (messages).
  714. LogBufferSize=1000
  715.  
  716. # Create a log of all broken files (yes ,no).
  717. #
  718. # It is a text file placed near downloaded files, which contains
  719. # the names of broken files.
  720. CreateBrokenLog=yes
  721.  
  722. # Create memory dump (core-file) on abnormal termination, Linux only (yes, no).
  723. #
  724. # Core-files are very helpful for debugging.
  725. #
  726. # NOTE: Core-files may contain sensible data, like your login/password to
  727. # newsserver etc.
  728. DumpCore=no
  729.  
  730. # See also option <LogFile> in section "PATHS"
  731.  
  732.  
  733. ##############################################################################
  734. ### DISPLAY (TERMINAL) ###
  735.  
  736. # Set screen-outputmode (loggable, colored, curses).
  737. #
  738. # loggable - only messages will be printed to standard output;
  739. # colored - prints messages (with simple coloring for messages categories)
  740. # and download progress info; uses escape-sequences to move cursor;
  741. # curses - advanced interactive interface with the ability to edit
  742. # download queue and various output option.
  743. OutputMode=curses
  744.  
  745. # Shows NZB-Filename in file list in curses-outputmode (yes, no).
  746. #
  747. # This option controls the initial state of curses-frontend,
  748. # it can be switched on/off in run-time with Z-key.
  749. CursesNzbName=yes
  750.  
  751. # Show files in groups (NZB-files) in queue list in curses-outputmode (yes, no).
  752. #
  753. # This option controls the initial state of curses-frontend,
  754. # it can be switched on/off in run-time with G-key.
  755. CursesGroup=no
  756.  
  757. # Show timestamps in message list in curses-outputmode (yes, no).
  758. #
  759. # This option controls the initial state of curses-frontend,
  760. # it can be switched on/off in run-time with T-key.
  761. CursesTime=no
  762.  
  763. # Update interval for Frontend-output in console mode or remote client
  764. # mode (milliseconds).
  765. #
  766. # Min value 25. Bigger values reduce CPU usage (especially in curses-outputmode)
  767. # and network traffic in remote-client mode.
  768. UpdateInterval=200
  769.  
  770.  
  771. ##############################################################################
  772. ### PAR CHECK/REPAIR ###
  773.  
  774. # How many par2-files to load (one, all, none).
  775. #
  776. # one - only one main par2-file must be downloaded and other must be paused;
  777. # all - all par2-files must be downloaded;
  778. # none - all par2-files must be automatically paused.
  779. # Paused files remain in queue and can be unpaused by parchecker when needed.
  780. LoadPars=one
  781.  
  782. # Force par-verification (yes, no).
  783. #
  784. # Force par-check for every download. When set to "no" the par-check is
  785. # performed only if the unpacker or the post-processing script detect a
  786. # damaged download.
  787. #
  788. # To download only needed par2-files (smart par-files loading) set also
  789. # the option <LoadPars> to "one". If option <LoadPars> is set to "all",
  790. # all par2-files will be downloaded before verification and repair starts.
  791. # The option <RenameBroken> must be set to "no", otherwise the par-checker
  792. # may not find renamed files and fail.
  793. ParCheck=auto
  794.  
  795. # Automatic par-repair (yes, no).
  796. #
  797. # If option <ParCheck> is enabled and <ParRepair> is not, the program
  798. # only verifies downloaded files and downloads needed par2-files, but does
  799. # not start repair-process. This is useful if computer does not have
  800. # enough CPU power, since repairing of large files may take too much
  801. # resources and time on a slow computers.
  802. ParRepair=yes
  803.  
  804. # What files should be scanned during par-verification (limited,
  805. # full, auto).
  806. #
  807. # limited - scan only files belonging to the par-set;
  808. # full - scan all files in the directory. This helps if the
  809. # files were renamed after creating of par-set.
  810. # auto - a limited scan is performed first. If the par-checker
  811. # detects missing files, it scans other files in the
  812. # directory until all required files are found.
  813. #
  814. # NOTE: for par-check/repair NZBGet uses library libpar2. The last and
  815. # widely used version 0.2 of the library has few bugs, sometimes causing
  816. # a crash of the program. This is especially true when using "full" or
  817. # "auto" par-scan. NZBGet is supplied with patches addressing these
  818. # issues. Please apply the patches to libpar2 and recompile it.
  819. ParScan=auto
  820.  
  821. # Use only par2-files with matching names (yes, no).
  822. #
  823. # If par-check needs extra par-blocks it searches for par2-files
  824. # in download queue, which can be unpaused and used for restore.
  825. # These par2-files should have the same base name as the main par2-file,
  826. # currently loaded in par-checker. Sometimes extra par files (especially if
  827. # they were uploaded by a different poster) have not matching names.
  828. # Normally par-checker does not use these files, but you can allow it
  829. # to use these files by setting <StrictParName> to "no".
  830. # This has however a side effect: if NZB-file contains more than one collection
  831. # of files (with different par-sets), par-checker may download par-files from
  832. # a wrong collection. This increases you traffic (but not harm par-check).
  833. #
  834. # NOTE: Par-checker always uses only par-files added from the same NZB-file
  835. # and the option <StrictParName> does not change this behavior.
  836. StrictParName=yes
  837.  
  838. # Maximum allowed time for par-repair (minutes).
  839. #
  840. # Value "0" means unlimited.
  841. #
  842. # If you use NZBGet on a very slow computer like NAS-device, it may be good to
  843. # limit the time allowed for par-repair. NZBGet calculates the estimated time
  844. # required for par-repair. If the estimated value exceeds the limit defined
  845. # here, NZBGet cancels the repair.
  846. #
  847. # To avoid a false cancellation NZBGet compares the estimated time with
  848. # <ParTimeLimit> after the first 5 minutes of repairing, when the calculated
  849. # estimated time is more or less accurate. But in a case if <ParTimeLimit> is
  850. # set to a value smaller than 5 minutes, the comparison is made after the first
  851. # whole minute.
  852. #
  853. # NOTE: The option limits only the time required for repairing. It doesn't
  854. # affect the first stage of parcheck - verification of files. However the
  855. # verification speed is constant, it doesn't depend on files integrity and
  856. # therefore it is not necessary to limit the time needed for the first stage.
  857. #
  858. # NOTE: This option requires an extended version of libpar2 (the original
  859. # version doesn't support the cancelling of repairing). Please refer to
  860. # NZBGet's README for info on how to apply the patch to libpar2.
  861. ParTimeLimit=0
  862.  
  863. # Pause download queue during check/repair (yes, no).
  864. #
  865. # Enable the option to give CPU more time for par-check/repair. That helps
  866. # to speed up check/repair on slow CPUs with fast connection (e.g. NAS-devices).
  867. #
  868. # NOTE: If parchecker needs additional par-files it temporarily unpauses
  869. # the queue.
  870. #
  871. # NOTE: See also options <PostPauseQueue> and <UnpackPauseQueue>.
  872. ParPauseQueue=no
  873.  
  874. # Cleanup download queue after successful check/repair (yes, no).
  875. #
  876. # Enable this option for automatic deletion of unneeded (paused) par-files
  877. # from download queue after successful check/repair.
  878. ParCleanupQueue=yes
  879.  
  880. # Delete source nzb-file after successful check/repair (yes, no).
  881. #
  882. # Enable this option for automatic deletion of nzb-file from incoming directory
  883. # after successful check/repair.
  884. NzbCleanupDisk=yes
  885.  
  886.  
  887. ##############################################################################
  888. ### UNPACK ###
  889.  
  890. # Unpack downloaded nzb-files (yes, no).
  891. #
  892. # If the download is damaged and could not be repaired using par-files
  893. # the unpacking is not performed.
  894. #
  895. # If the option <ParCheck> is disabled the program will try to unpack
  896. # downloaded files first. If the unpacking fails the par-check/repair
  897. # is performed and the unpack will be executed again.
  898. Unpack=yes
  899.  
  900. # Pause download queue during unpack (yes, no).
  901. #
  902. # Enable the option to give CPU more time for unpacking. That helps
  903. # to speed up unpacking on slow CPUs.
  904. #
  905. # NOTE: See also options <ParPauseQueue> and <PostPauseQueue>.
  906. UnpackPauseQueue=yes
  907.  
  908. # Delete archive files after successful unpacking (yes, no).
  909. UnpackCleanupDisk=yes
  910.  
  911. # Full path to unrar executable.
  912. #
  913. # Example: "/usr/bin/unrar".
  914. #
  915. # If unrar is in your PATH you may leave the path part and set only
  916. # the executable name ("unrar" on POSIX or "unrar.exe" on Windows).
  917. UnrarCmd=unrar
  918.  
  919. # Full path to 7-Zip executable.
  920. #
  921. # Example: "/usr/bin/7z".
  922. #
  923. # If 7-Zip binary is in your PATH you may leave the path part and set only
  924. # the executable name ("7z" or "7za" on POSIX or "7z.exe" on Windows).
  925. SevenZipCmd=7z
  926.  
  927.  
  928. ##############################################################################
  929. ### POST-PROCESSING ###
  930.  
  931. # Set path to program, that must be executed after the download of nzb-file
  932. # is completed and possibly par-checked/repaired and unpacked, depending
  933. # on other options.
  934. #
  935. # Example: "PostProcess=~/nzbget-postprocess.sh".
  936. #
  937. # NOTE: An example script is provided within distribution in file
  938. # "nzbget-postprocess.sh" (installed into /usr/local/bin).
  939. #
  940. # NOTE: Since version 10.0 NZBGet has a built-in support for unpack
  941. # (option <Unpack>). In the previous versions unpack was performed by
  942. # post-processing scripts. If you use a script created for older NZBGet
  943. # version you need to disable the built-in unpack for script to operate
  944. # properly.
  945. #
  946. # INFO FOR DEVELOPERS:
  947. # If the option <AllowReProcess> is disabled (that's the default setting)
  948. # the post-processing script is executed once per nzb-file after
  949. # par-check/repair (if needed) and unpacking (if enabled).
  950. #
  951. # If the option <AllowReProcess> is active the post-processing script is
  952. # executed for each collection within nzb-file (for nzb-files having multiple
  953. # collections but at least once). Depending on option <ParCheck> the collection
  954. # could be already par-checked/repaired or the script could be called without
  955. # par-check taken place. In the latest case if the script detects errors
  956. # (such as unpack failed) it has an ability to request par-check from
  957. # NZBGet. After par-check/repair NZBGet calls the script once again.
  958. #
  959. # NZBGet passes following arguments to post-processing script as environment
  960. # variables:
  961. # NZBPP_DIRECTORY - path to destination dir for downloaded files;
  962. # NZBPP_NZBNAME - user-friendly name of processed nzb-file as it is displayed
  963. # by the program. The file path and extension are removed.
  964. # If download was renamed, this parameter reflects the new name;
  965. # NZBPP_NZBFILENAME - name of processed nzb-file. It includes file extension and also
  966. # may include full path;
  967. # NZBPP_CATEGORY - category assigned to nzb-file (can be empty string);
  968. # NZBPP_PARSTATUS - result of par-check:
  969. # 0 = not checked: par-check is disabled or nzb-file does
  970. # not contain any par-files;
  971. # 1 = checked and failed to repair;
  972. # 2 = checked and successfully repaired;
  973. # 3 = checked and can be repaired but repair is disabled.
  974. # NZBPP_UNPACKSTATUS - result of unpack:
  975. # 0 = unpack is disabled or was skipped due to nzb-file
  976. # properties or due to errors during par-check;
  977. # 1 = unpack failed;
  978. # 2 = unpack successful.
  979. #
  980. # In addition the following arguments are passed if the option <AllowReProcess>
  981. # is active:
  982. # NZBPP_PARFILENAME - name of par-file or empty string (if no collections were
  983. # found);
  984. # NZBPP_PARFAILED - indication of failed par-jobs for current nzb-file:
  985. # 0 = no failed par-jobs;
  986. # 1 = current par-job or any of the previous par-jobs for
  987. # the same nzb-files failed;
  988. # NZBPP_NZBCOMPLETED - state of nzb-job:
  989. # 0 = there are more collections in this nzb-file queued;
  990. # 1 = this was the last collection in nzb-file.
  991. #
  992. # If nzb-file has associated postprocess-parameters (which can be set using
  993. # subcommand <O> of command <-E>, for example: NZBGet -E G O "myvar=hello !" 10)
  994. # or using XML-/JSON-RPC (for example via web-interface), they are also passed
  995. # as environment variables. These variables have prefix "NZBPR_" in their names.
  996. # For example, pp-parameter "myvar" will be passed as environment
  997. # variable "NZBPR_myvar".
  998. #
  999. # In addition to arguments and postprocess-parameters NZBGet passes all
  1000. # nzbget.conf-options to postprocess-program as environment variables. These
  1001. # variables have prefix "NZBOP_" and are written in UPPER CASE. For Example
  1002. # option "ParRepair" is passed as environment variable "NZBOP_PARREPAIR".
  1003. # The dots in option names are replaced with underscores, for example
  1004. # "SERVER1_HOST". For options with predefined possible values (yes/no, etc.)
  1005. # the values are passed always in lower case.
  1006. #
  1007. # Return value: NZBGet processes the exit code returned by the script:
  1008. # 93 - post-process successful (status = SUCCESS);
  1009. # 94 - post-process failed (status = FAILURE);
  1010. # 95 - post-process skipped (status = NONE);
  1011. # 91 - request NZBGet to do par-check/repair for current collection in the
  1012. # current nzb-file. This return code is accepted only if the
  1013. # option <AllowReProcess> is active;
  1014. # 92 - request NZBGet to do par-check/repair for all collections (par-sets)
  1015. # in the current nzb-file.
  1016. # All other return codes are interpreted as "status unknown".
  1017. #
  1018. # The return value is used to display the status of post-processing in
  1019. # a history view. In addition to status one or more text messages can be
  1020. # passed to history using a special prefix "[HISTORY]" by printing messages
  1021. # to standard output. For example:
  1022. # echo "[ERROR] [HISTORY] Unpack failed, not enough disk space";
  1023. #
  1024. # NOTE: If the option <AllowReProcess> is active NZBGet calls the script
  1025. # for each collection within nzb-file. The term "collection" actually means
  1026. # "par-set". To determine what "collections" are present in nzb-file NZBGet
  1027. # looks for par-sets. If any collection of files within nzb-file does
  1028. # not have any par-files, this collection will not be detected.
  1029. # For example, for nzb-file containing three collections but only two par-sets,
  1030. # the postprocess will be called two times - after processing of each par-set.
  1031. # If NZBGet doesn't find any collections it calls PostProcess once
  1032. # with empty string for parameter NZBPP_PARFILENAME.
  1033. PostProcess=
  1034.  
  1035. # Allow multiple post-processing for the same nzb-file (yes, no).
  1036. #
  1037. # NOTE: Enable this option only if you were advised to do that by the author
  1038. # of the post-processing script.
  1039. #
  1040. # NOTE: By enabling <AllowReProcess> you should disable the option <ParCheck>
  1041. # to prevent multiple par-checking.
  1042. #
  1043. # INFO FOR DEVELOPERS:
  1044. # This option affects the post-processing in several ways:
  1045. # 1) If the option is active the post-processing script (option <PostProcess>)
  1046. # is called for each collection (par-set) within nzb-file;
  1047. # 2) The post-processing script may be called multiple times when nzb-file
  1048. # reaches the state "completely downloaded". This can be needed if
  1049. # the par-check/-repair is performed by the post-processing script
  1050. # (instead of relying on NZBGet's built-in par-check-feature).
  1051. #
  1052. # NOTE: If the built-in unpacking is active (option <Unpack>) this option
  1053. # is ignored (as if it were set to "no").
  1054. #
  1055. # NOTE: If you develop a script depending on this option you should check
  1056. # if the option is active when your script is started and generate an
  1057. # error message if the option is not set correctly. You should also check
  1058. # the option <Unpack> because if it's active the option <AllowReProcess>
  1059. # doesn't work too.
  1060. AllowReProcess=no
  1061.  
  1062. # Pause download queue during executing of postprocess-script (yes, no).
  1063. #
  1064. # Enable the option to give CPU more time for postprocess-script. That helps
  1065. # to speed up postprocess on slow CPUs with fast connection (e.g. NAS-devices).
  1066. #
  1067. # NOTE: See also options <ParPauseQueue> and <UnpackPauseQueue>.
  1068.  
  1069.  
  1070. ##############################################################################
  1071. ### SCHEDULER ###
  1072.  
  1073. # This section defines scheduler commands.
  1074. # For each command create a set of options <TaskX.Time>, <TaskX.Command>,
  1075. # <TaskX.WeekDays> and <TaskX.DownloadRate>.
  1076. # The following example shows how to throttle downloads in the daytime
  1077. # by 100 KB/s and download at full speed overnights:
  1078.  
  1079. # Time to execute the command (HH:MM).
  1080. #
  1081. # Multiple comma-separated values are accepted.
  1082. # Asterix as hours-part means "every hour".
  1083. #
  1084. # Examples: "08:00", "00:00,06:00,12:00,18:00", "*:00", "*:00,*:30".
  1085. #Task1.Time=08:00
  1086.  
  1087. # Week days to execute the command (1-7).
  1088. #
  1089. # Comma separated list of week days numbers.
  1090. # 1 is Monday.
  1091. # Character '-' may be used to define ranges.
  1092. #
  1093. # Examples: "1-7", "1-5", "5,6", "1-5, 7".
  1094. #Task1.WeekDays=1-7
  1095.  
  1096. # Command to be executed (DownloadRate, PauseDownload, UnpauseDownload, PauseScan,
  1097. # UnpauseScan, Process).
  1098. #
  1099. # Possible commands:
  1100. # DownloadRate - sets download rate in KB/s;
  1101. # PauseDownload - pauses download;
  1102. # UnpauseDownload - resumes download;
  1103. # PauseScan - pauses scan of incoming nzb-directory;
  1104. # UnpauseScan - resumes scan of incoming nzb-directory;
  1105. # Process - executes external program.
  1106. #Task1.Command=DownloadRate
  1107.  
  1108. # Download rate to be set if the command is "DownloadRate" (kilobytes/sec).
  1109. #
  1110. # Value "0" means no speed control.
  1111. #
  1112. # If the option <TaskX.Command> is not set to "DownloadRate" this option
  1113. # is ignored and can be omitted.
  1114. #Task1.DownloadRate=100
  1115.  
  1116. # Path to the program to execute if the command is "Process".
  1117. #
  1118. # Example: "Task1.Process=/home/user/fetch-nzb.sh".
  1119. #
  1120. # If the option <TaskX.Command> is not set to "Process" this option
  1121. # is ignored and can be omitted.
  1122. #
  1123. # NOTE: It's allowed to add parameters to command line. If filename or
  1124. # any parameter contains spaces it must be surrounded with single quotation
  1125. # marks. If filename/parameter contains single quotation marks, each of them
  1126. # must be replaced with two single quotation marks and the resulting filename/
  1127. # parameter must be surrounded with single quotation marks.
  1128. # Example: '/home/user/download/my scripts/task process.sh' 'world''s fun'.
  1129. # In this example one parameter (world's fun) is passed to the script
  1130. # (task process.sh).
  1131. #Task1.Process=/home/user/script.sh
  1132.  
  1133. #Task2.Time=20:00
  1134. #Task2.WeekDays=1-7
  1135. #Task2.Command=DownloadRate
  1136. #Task2.DownloadRate=0
  1137. Category5.Name=Blu-ray
  1138. Category6.Name=Games
  1139. Category2.DestDir=/media/HDD1/Downloads/Complete/TV
  1140. Category3.DestDir=/media/HDD1/Downloads/Complete/Music
  1141. Category4.DestDir=/media/HDD1/Downloads/Complete/Software
  1142. Category5.DestDir=/media/HDD1/Downloads/Complete/Blu-ray
  1143. Category6.DestDir=/media/HDD1/Downloads/Complete/Games
  1144. Category7.Name=Movies _ HD
  1145. Category7.DestDir=/media/HDD1/Downloads/Complete/Movies
  1146. Category8.Name=Movies-x264
  1147. Category8.DestDir=/media/HDD1/Downloads/Complete/Movies
  1148. Category9.Name=TV-HD
  1149. Category9.DestDir=/media/HDD1/Downloads/Complete/TV
  1150. PostPauseQueue=no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement