twoot/default.toml

43 lines
1000 B
TOML
Raw Normal View History

2022-11-17 15:25:43 +00:00
[config]
2022-11-17 16:15:13 +00:00
# twitter account name without '@'
2022-11-18 16:20:58 +00:00
twitter_account = ""
2022-11-17 16:15:13 +00:00
# Domain name of Mastodon instance
2022-11-18 16:20:58 +00:00
mastodon_instance = ""
2022-11-17 16:15:13 +00:00
2022-11-18 16:22:30 +00:00
# Mastodon username (login email address)
2022-11-18 16:20:58 +00:00
mastodon_user = ""
2022-11-17 15:25:43 +00:00
[options]
2022-11-17 16:15:13 +00:00
# Download videos from twitter and upload them on Mastodon
2022-11-18 15:43:16 +00:00
# Default is false
2022-11-25 12:32:19 +00:00
upload_videos = true
2022-11-17 16:15:13 +00:00
# Also post the "reply-to" tweets from twitter account
2022-11-18 15:43:16 +00:00
# Default is false
2022-11-18 16:20:58 +00:00
post_reply_to = false
2022-11-17 16:15:13 +00:00
# Do not post the retweets of other twitter accounts
2022-11-18 15:43:16 +00:00
# Default is false
2022-11-18 16:20:58 +00:00
skip_retweets = false
2022-11-17 16:15:13 +00:00
2022-11-23 10:17:53 +00:00
# Replace redirected links in tweets with direct URLs
# Default is false
2022-11-25 12:32:19 +00:00
remove_link_redirections = true
2022-11-23 10:17:53 +00:00
2022-11-17 21:03:44 +00:00
# Clean up URLs in tweets to remove trackers
2022-11-18 15:43:16 +00:00
# Default is false
2022-11-25 12:32:19 +00:00
remove_trackers_from_urls = true
2022-11-17 15:25:43 +00:00
2022-11-17 16:15:13 +00:00
# Maximum age of tweet to post (in days, decimal values accepted)
2022-11-18 15:43:16 +00:00
# Default is 1
2022-11-18 16:20:58 +00:00
tweet_max_age = 1
2022-11-17 16:15:13 +00:00
2022-11-18 15:43:16 +00:00
# Minimum age of tweet to post (in minutes)
# Default is 0 (post tweet as soon as possible)
2022-11-18 16:20:58 +00:00
tweet_delay = 0
2022-11-17 16:15:13 +00:00
# Maximum number of toots to post in this run
2022-11-18 15:43:16 +00:00
# Default is 0 (which means unlimited)
2022-11-25 12:32:19 +00:00
toot_cap = 1