diff options
author | default <nobody@localhost> | 2022-11-08 09:07:51 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-11-08 09:07:51 +0100 |
commit | c3e3db84ed5c8fa8da87479c63f1066204f0d495 (patch) | |
tree | 07c13c075860066264c2f77a42ff39aa27ab5ff4 /doc/snac.8 | |
parent | 2364d960b756f3018f2b4a98f1b71aaada60c033 (diff) |
Updated documentation.
Diffstat (limited to 'doc/snac.8')
-rw-r--r-- | doc/snac.8 | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -218,6 +218,20 @@ is supported. Intentionally, the and .Pa /following paths return empty lists. +.Ss Migrating from Mastodon +User migration from different Fediverse instances is a pain in the ass +that has been implemented everywhere as a kludgy afterthought. There is +not much that can be done, other than importing the list of people you +follow to your new +.Nm +account. +.Pp +To do this, download the user's list of accounts being followed (in CSV +format) from the Mastodon web interface and execute this: +.Bd -literal -offset indent +awk -F, 'NR > 1 { print $1 }' /path/to/following_accounts.csv | \\ +xargs -n 1 snac follow $SNAC_BASEDIR $SNAC_USER +.Ed .Ss Other Considerations .Nm stores all the messages it receives as JSON files, which are usually |