Received: from out0.migadu.com (out0.migadu.com [94.23.1.103]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id BAD47780E89 for <~alpine/users@lists.alpinelinux.org>; Thu, 9 Jun 2022 04:57:47 +0000 (UTC) MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ayaya.dev; s=key1; t=1654750666; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=EJZhVWLKD/dg3dKL988yaO5iKT8BcVYbkggOrdXItEY=; b=AranbRlFvgPs1FZMxR9bAqobrAZJYjPee4f9CaXYLD2UKTa7o4kml3+2l4MRknImb6T6Ij 1I+0P4eGGVKknGibdb59a9+ycXHZ6SDUZK4v54iMKGHfj3TpizIeq+H124a4yi1tfMB9a7 rYA3vcw+dupaottQ8ulh9kH2EDIcrZg= Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Thu, 09 Jun 2022 06:57:45 +0200 Message-Id: Cc: Subject: Re: Adding Dropbox and updating rclone on wiki? X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: "alice" To: "Dennis Chen" , <~alpine/users@lists.alpinelinux.org> References: In-Reply-To: X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: ayaya.dev On Wed Jun 8, 2022 at 9:45 PM CEST, Dennis Chen wrote: > I've written up a wiki article on Dropbox but cannot post it. It says: > > > Error: This action has been automatically identified as harmful, and > > therefore disallowed. If you believe your action was constructive, > > please inform an administrator of what you were trying to do. A brief > > description of the abuse rule which your action matched is: Spammers no= t > > welcome > > I also cannot verify my email on the wiki: it won't send the > verification email to my address. i forget what the automatic spam rules were.. for me it seemed to work, but a lot of people had this issue. you could ping someone in #alpine-linux/oftc on irc. as for the email, it probably went to spam or something > Here's the article, hopefully someone else can post it: Done: https://wiki.alpinelinux.org/wiki/Dropbox > > [https://www.dropbox.com/ Dropbox] is a cloud-based file store > > service. > >=20 > > =3D Syncing with rclone =3D > >=20 > > The official Dropbox client is fairly difficult to setup on Alpine. If > > all you need is file syncing and you're fine with using a CLI to do it, > > you can use [https://rclone.org/docs/ rclone]. > >=20 > > Run > >
> > # apk add rclone
> > 
> > to install rclone. > >=20 > > Then run > >
> > $ rclone config
> > 
> > and you will be greeted with a series of interactive prompts. > >=20 > > First you start making a new remote. > >
> > n) New remote
> > d) Delete remote
> > q) Quit config
> > e/n/d/q> n
> > 
> >=20 > > Then you need to give this new remote a name; it hardly matters what it > > is, but for this guide we'll just call it "dropbox".=20 > >
> > name> dropbox
> > 
> >=20 > > Then you will be asked what kind of storage you want to use. Look for > > the option that says "Dropbox" (as of the time of writing, it is 12), > > and input that. > >
> > Option Storage.
> > Type of storage to configure.
> > Choose a number from below, or type in your own value.
> > ...
> > Storage> 12
> > 
> >=20 > > Then you will be asked about "OAuth Client Id" and "OAuth Client > > Secret". Just leave those blank by pressing Enter as rclone instructs. > > You'll be asked if you wanted to edit the advanced config and use auto > > config too. Just press Enter to use the defaults, unless you have a > > reason not to. > >=20 > > Finally, you will be prompted to allow rclone OAuth access to Dropbox. > > Do this. If all went well, you should get a success message afterwards. > >=20 > > To sync, run > >
> > $ rclone sync ~/dropbox dropbox:
> > 
> > As long as this command is running, your local and remote Dropbox > > directories will be synced. If you want, you may set up a daemon to kee= p > > this persistently running. > >=20 > > More detailed usage instructions are also available at > > [https://rclone.org/dropbox/ rclone's Dropbox page], and of course, the > > man page for rclone.