Files
transmission/docs/Editing-Configuration-Files.md

18 KiB

It is not always possible to set all configurations from the GUI, especially for the daemon or the web interface. This guide will try to give an overview of how and what you can change. For the location of these files, look at the Configuration Files page.

Note: The client should be closed before making changes, otherwise settings will be reverted to their previous state.

Some of Transmission's behavior can also be customized via environment variables.

GTK / Daemon / CLI

Important

Transmisson 4.1.0 started a transition to convert all configuration strings to snake_case.

The old kebab-case strings are still the default in Transmission 4, but are deprecated and will be removed in the future. The new snake_case strings will become the default in Transmission 5, but you can adopt them now by starting Transmission with environment variable TR_SAVE_VERSION_FORMAT=5 (this will be the default in Transmission 5).

You can start Transmission with TR_SAVE_VERSION_FORMAT=4 (the default in Transmission 4) to fall back to the old format if needed.

For documentation of the old configurations, please consult documentation from previous versions. https://github.com/transmission/transmission/blob/4.0.6/docs/Editing-Configuration-Files.md

Overview

GTK, CLI and daemon (both on a Mac and Linux) use a JSON formatted file, mainly because of its human readability. (Consult the JSON website for detailed information)

Reload Settings

You can make the daemon reload the settings file by sending it the SIGHUP signal. Or simply run either of the following commands:

$ killall -HUP transmission-daemon

Or:

$ pkill -HUP transmission-daemon

Formatting

Here is a sample of the three basic types: respectively Boolean, Number and String:

{
    "rpc_enabled": true,
    "peer_port": 51413,
    "rpc_whitelist": "127.0.0.1,192.168.*.*"
}

Options

IP Announce

  • announce_ip: String (default = "") Alternative IP address to announce to the tracker.
  • announce_ip_enabled: Boolean (default = false) When enabled announce_ip value is used instead of the client's address visible to the tracker for announcement requests.

Bandwidth

  • alt_speed_enabled: Boolean (default = false, aka 'Turtle Mode') Note: Clicking the "Turtle" in the GUI when the scheduler is enabled, will only temporarily remove the scheduled limit until the next cycle.
  • alt_speed_up: Number (kB/s, default = 50)
  • alt_speed_down: Number (kB/s, default = 50)
  • speed_limit_down: Number (kB/s, default = 100)
  • speed_limit_down_enabled: Boolean (default = false)
  • speed_limit_up: Number (kB/s, default = 100)
  • speed_limit_up_enabled: Boolean (default = false)
  • upload_slots_per_torrent: Number (default = 14)

Blocklists

Files and Locations

  • download_dir: String (default = default locations)
  • incomplete_dir: String (default = default locations) Directory to keep files in until torrent is complete.
  • incomplete_dir_enabled: Boolean (default = false) When enabled, new torrents will download the files to incomplete_dir. When complete, the files will be moved to download_dir.
  • preallocation: Number (0 = Off, 1 = Fast, 2 = Full (slower but reduces disk fragmentation), default = 1)
  • rename_partial_files: Boolean (default = true) Postfix partially downloaded files with ".part".
  • start_added_torrents: Boolean (default = true) Start torrents as soon as they are added.
  • trash_can_enabled: Boolean (default = true) Whether to move the torrents to the system's trashcan or unlink them right away upon deletion from Transmission. Note: transmission-gtk only.
  • trash_original_torrent_files: Boolean (default = false) Delete torrents added from the watch directory.
  • umask: String (default = "022") Sets Transmission's file mode creation mask. See the umask(2) manpage for more information.
  • watch_dir: String
  • watch_dir_enabled: Boolean (default = false) Watch a directory for torrent files and add them to Transmission. Note: When watch_dir_enabled is true, only the transmission-daemon, transmission-gtk, and transmission-qt applications will monitor watch_dir for new .torrent files and automatically load them.
  • watch_dir_force_generic: Boolean (default = false) Force to use a watch directory implementation that does not rely on OS-specific mechanisms. Useful when your watch directory is on a network location, such as CIFS or NFS. Note: transmission-daemon only.

Misc

  • cache_size_mb: Number (default = 4), in MiB, to allocate for Transmission's memory cache. The cache is used to help batch disk IO together, so increasing the cache size can be used to reduce the number of disk reads and writes. The value is the total available to the Transmission instance. Set it to the smallest value tolerable by the random access performance of your storage medium to minimize data loss in case Transmission quit unexpectedly. Setting this to 0 bypasses the cache, which may be useful if your filesystem already has a cache layer that aggregates transactions. Pieces are guaranteed to be written to filesystem if sequential download is enabled. Otherwise, data might still be in cache only.
  • default_trackers: String (default = "") A list of double-newline separated tracker announce URLs. These are used for all torrents in addition to the per torrent trackers specified in the torrent file. If a tracker is only meant to be a backup, it should be separated from its main tracker by a single newline character. If a tracker should be used additionally to another tracker it should be separated by two newlines. (e.g. "udp://tracker.example.invalid:1337/announce\n\nudp://tracker.another-example.invalid:6969/announce\nhttps://backup-tracker.another-example.invalid:443/announce\n\nudp://tracker.yet-another-example.invalid:1337/announce", in this case tracker.example.invalid, tracker.another-example.invalid and tracker.yet-another-example.invalid would be used as trackers and backup-tracker.another-example.invalid as backup in case tracker.another-example.invalid is unreachable.
  • dht_enabled: Boolean (default = true) Enable Distributed Hash Table (DHT).
  • encryption: Number (0 = Prefer unencrypted connections, 1 = Prefer encrypted connections, 2 = Require encrypted connections; default = 1) Encryption preference. Encryption may help get around some ISP filtering, but at the cost of slightly higher CPU use.
  • lpd_enabled: Boolean (default = false) Enable Local Peer Discovery (LPD).
  • message_level: Number (0 = None, 1 = Critical, 2 = Error, 3 = Warn, 4 = Info, 5 = Debug, 6 = Trace; default = 4) Set verbosity of Transmission's log messages.
  • pex_enabled: Boolean (default = true) Enable Peer Exchange (PEX).
  • pidfile: String Path to file in which daemon PID will be stored (transmission-daemon only)
  • proxy_url: String? (default = null) Proxy for HTTP(S) requests (for example, requests to tracker). Format [scheme]://[host]:[port], where scheme is one of: http, https, socks4, socks4h, socks5, socks5h. If null, Transmission respects the CURL environment variables. If empty string, no proxy is used. For more information see curl proxy documentation
  • scrape_paused_torrents_enabled: Boolean (default = true)
  • script_torrent_added_enabled: Boolean (default = false) Run a script when a torrent is added to Transmission. Environmental variables are passed in as detailed on the Scripts page.
  • script_torrent_added_filename: String (default = "") Path to script.
  • script_torrent_done_enabled: Boolean (default = false) Run a script when a torrent is done downloading. Environmental variables are passed in as detailed on the Scripts page.
  • script_torrent_done_filename: String (default = "") Path to script.
  • script_torrent_done_seeding_enabled: Boolean (default = false) Run a script when a torrent is done seeding. Environmental variables are passed in as detailed on the Scripts page.
  • script_torrent_done_seeding_filename: String (default = "") Path to script.
  • start_paused: Boolean (default = false) Pause the torrents when daemon starts. Note: transmission-daemon only.
  • tcp_enabled: Boolean (default = true) DEPRECATED, use preferred_transports instead. Leave it at default and let Transmission manage this value to minimize accidents.
  • torrent_added_verify_mode: String ("fast", "full", default: "fast") Whether newly-added torrents' local data should be fully verified when added, or wait and verify them on-demand later. See #2626 for more discussion.
  • torrent_complete_verify_enabled: Boolean (default = false) Whether to verify the torrent once it finishes downloading.
  • utp_enabled: Boolean (default = true) DEPRECATED, use preferred_transports instead. Leave it at default and let Transmission manage this value to minimize accidents.
  • preferred_transports: String[] ("utp" = Micro Transport Protocol (µTP), "tcp" = TCP; default = ["utp", "tcp"]) List your preference of transport protocols in the order of preferred-first. Omitting the transport protocol from the list will disable it. Note: Never disable TCP when you also disable µTP, because then your client would not be able to communicate. Disabling TCP might also break webseeds.
  • sleep_per_seconds_during_verify: Number (default = 100) Controls the duration in milliseconds for which the verification process will pause to reduce disk I/O pressure.

Peers

  • bind_address_ipv4: String (default = "") Where to listen for peer connections. When no valid IPv4 address is provided, Transmission will bind to "0.0.0.0".
  • bind_address_ipv6: String (default = "") Where to listen for peer connections. When no valid IPv6 address is provided, Transmission will try to bind to your default global IPv6 address. If that didn't work, then Transmission will bind to "::".
  • peer_congestion_algorithm: String. This is documented on https://www.pps.jussieu.fr/~jch/software/bittorrent/tcp-congestion-control.html.
  • peer_limit_global: Number (default = 200)
  • peer_limit_per_torrent: Number (default = 50)
  • peer_socket_tos: String (default = "le") Set the DiffServ parameter for outgoing packets. Allowed values are lowercase DSCP names. See the tr_tos_t class from libtransmission/net.h for the exact list of possible values.
  • reqq: Number (default = 2000) The number of outstanding block requests a peer is allowed to queue in the client. The higher this number, the higher the max possible upload speed towards each peer.
  • sequential_download Boolean (default = false) Enable sequential download by default when adding torrents.

Peer Port

  • peer_port: Number (default = 51413)
  • peer_port_random_high: Number (default = 65535)
  • peer_port_random_low: Number (default = 1024)
  • peer_port_random_on_start: Boolean (default = false)
  • port_forwarding_enabled: Boolean (default = true) Enable UPnP or NAT-PMP.

Queuing

  • download_queue_enabled: Boolean (default = true) When true, Transmission will only download download_queue_size non-stalled torrents at once.
  • download_queue_size: Number (default = 5) See download_queue_enabled.
  • queue_stalled_enabled: Boolean (default = true) When true, torrents that have not shared data for queue_stalled_minutes are treated as 'stalled' and are not counted against the download_queue_size and seed_queue_size limits.
  • queue_stalled_minutes: Number (default = 30) See queue_stalled_enabled.
  • seed_queue_enabled: Boolean (default = false) When true. Transmission will only seed seed_queue_size non-stalled torrents at once.
  • seed_queue_size: Number (default = 10) See seed_queue_enabled.

RPC

  • anti_brute_force_enabled:: Boolean (default = false) Enable a very basic brute force protection for the RPC server. See anti_brute_force_threshold below.
  • anti_brute_force_threshold:: Number (default = 100) After this amount of failed authentication attempts is surpassed, the RPC server will deny any further authentication attempts until it is restarted. This is not tracked per IP but in total.
  • rpc_authentication_required: Boolean (default = false)
  • rpc_bind_address: String (default = "0.0.0.0") Where to listen for RPC connections
  • rpc_enabled: Boolean (default = true [transmission-daemon], false [others])
  • rpc_host_whitelist: String (Comma-delimited list of domain names. Wildcards allowed using '*'. Example: "*.foo.org,example.com", Default: "", Always allowed: "localhost", "localhost.", all the IP addresses. Added in v2.93)
  • rpc_host_whitelist_enabled: Boolean (default = true. Added in v2.93)
  • rpc_password: String. You can enter this in as plaintext when Transmission is not running, and then Transmission will salt the value on startup and re-save the salted version as a security measure. Note: Transmission treats passwords starting with the character { as salted, so when you first create your password, the plaintext password you enter must not begin with {.
  • rpc_port: Number (default = 9091)
  • rpc_socket_mode: String UNIX filesystem mode for the RPC UNIX socket (default: 0750; used when rpc_bind_address is a UNIX socket)
  • rpc_url: String (default = /transmission/. Added in v2.2)
  • rpc_username: String
  • rpc_whitelist: String (Comma-delimited list of IP addresses. Wildcards allowed using '*'. Example: "127.0.0.*,192.168.*.*", Default: "127.0.0.1")
  • rpc_whitelist_enabled: Boolean (default = true)

Scheduling

  • alt_speed_time_enabled: Boolean (default = false) Note: When enabled, this will toggle the alt_speed_enabled setting.
  • alt_speed_time_begin: Number (default = 540, in minutes from midnight, 9am)
  • alt_speed_time_end: Number (default = 1020, in minutes from midnight, 5pm)
  • alt_speed_time_day: Number/bitfield (default = 127, all days)
    • Start with 0, then for each day you want the scheduler enabled, add:
      • Sunday: 1 (binary: 0000001)
      • Monday: 2 (binary: 0000010)
      • Tuesday: 4 (binary: 0000100)
      • Wednesday: 8 (binary: 0001000)
      • Thursday: 16 (binary: 0010000)
      • Friday: 32 (binary: 0100000)
      • Saturday: 64 (binary: 1000000)
    • Examples:
      • Weekdays: 62 (binary: 0111110)
      • Weekends: 65 (binary: 1000001)
      • All Days: 127 (binary: 1111111)
  • idle_seeding_limit: Number (default = 30) Stop seeding after being idle for N minutes.
  • idle_seeding_limit_enabled: Boolean (default = false)
  • ratio_limit: Number (default = 2.0)
  • ratio_limit_enabled: Boolean (default = false)

Legacy Options

Only keys that differ from above are listed here. These options have been replaced in newer versions of Transmission.

2.31 (and older)

  • open-file-limit: Number (default = 32)

1.5x (and older)

Bandwidth
  • download-limit: Number (kB/s, default = 100)
  • download-limit-enabled: Boolean (default = false)
  • upload-limit: Number (kB/s, default = 100)
  • upload-limit-enabled: Boolean (default = false)
Peer Port
  • peer-port-random-enabled: Boolean (default = false)

1.4x (and older)

Proxy
  • proxy-authentication String
  • proxy-authentication-required: Boolean (default = 0)
  • proxy-port: Number (default = 80)
  • proxy-server: String
  • proxy-server-enabled: Boolean (default = 0)
  • proxy-type: Number (0 = HTTP, 1 = SOCKS4, 2 = SOCKS5, default = 0)
  • proxy-username: String
Peers
  • max-peers-global: Number (default = 240)
  • max-peers-per-torrent: Number (default = 60)

1.3x (and older)

RPC
  • rpc-access-control-list: String (Comma-delimited list of IP addresses prefixed with "+" or "-". Wildcards allowed using '*'. Example: "+127.0.0.*,-192.168.*.*", Default: "+127.0.0.1")

macOS

Overview

macOS has a standardized way of saving user preferences files using XML format. These files are called plist (short for property list) files. Usually there is no need to modify these files directly, since Apple provided a command-line tool to reliably change settings. You do need to restart Transmission before these have effect.

In short:

  • To set a key: defaults write org.m0k.transmission <key> <value>
  • To reset a key: defaults delete org.m0k.transmission <key>

Options

  • PeerSocketTOS: Number (Default = 0)
  • RPCHostWhitelist: String, see rpc_host_whitelist above.
  • RPCUseHostWhitelist: Boolean, see rpc_host_whitelist_enabled above.