mirror of
https://gitlab.com/jeancf/twoot.git
synced 2024-11-24 12:31:12 +00:00
56 lines
1.4 KiB
TOML
56 lines
1.4 KiB
TOML
[config]
|
|
# twitter account name without '@'
|
|
twitter_account = "unrealengine"
|
|
|
|
# Domain name of Mastodon instance
|
|
mastodon_instance = "i"
|
|
|
|
# Mastodon username (login email address)
|
|
mastodon_user = "u"
|
|
|
|
[options]
|
|
# Download videos from twitter and upload them on Mastodon
|
|
# Default is false
|
|
upload_videos = false
|
|
|
|
# Also post the "reply-to" tweets from twitter account
|
|
# Default is false
|
|
post_reply_to = false
|
|
|
|
# Do not post the retweets of other twitter accounts
|
|
# Default is false
|
|
skip_retweets = false
|
|
|
|
# Replace redirected links in tweets with direct URLs
|
|
# Default is false
|
|
remove_link_redirections = true
|
|
|
|
# Clean up URLs in tweets to remove trackers
|
|
# Default is false
|
|
remove_trackers_from_urls = true
|
|
|
|
# Maximum age of tweet to post (in days, decimal values accepted)
|
|
# Default is 1
|
|
tweet_max_age = 2
|
|
|
|
# Minimum age of tweet to post (in minutes)
|
|
# Default is 0 (post tweet as soon as possible)
|
|
tweet_delay = 0
|
|
|
|
# Maximum number of toots to post in this run
|
|
# Default is 0 (which means unlimited)
|
|
toot_cap = 0
|
|
|
|
[options.substitution]
|
|
# Replace twitter links by random alternative out of this list
|
|
# Default is []
|
|
twitter = ["nitter.net", ]
|
|
|
|
# Replace youtube.com link by random alternative out of this list
|
|
# Default is []
|
|
youtube = ["piped.kavin.rocks", "invidious.flokinet.to"]
|
|
|
|
# Replace reddit.com link by random alternative out of this list
|
|
# Default is []
|
|
reddit = ["teddit.net", ]
|