From mboxrd@z Thu Jan 1 00:00:00 1970 From: Holger Wenzel Subject: Re: What WebDAV service do you use for syncing org files? Date: Thu, 21 Oct 2010 11:27:14 +0200 Message-ID: <87k4lb28wd.fsf@googlemail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=47645 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P8rRJ-0007GR-Jl for emacs-orgmode@gnu.org; Thu, 21 Oct 2010 05:28:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P8rRH-0002OR-1r for emacs-orgmode@gnu.org; Thu, 21 Oct 2010 05:28:01 -0400 Received: from lo.gmane.org ([80.91.229.12]:60733) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P8rRG-0002OA-Sf for emacs-orgmode@gnu.org; Thu, 21 Oct 2010 05:27:59 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1P8rRF-0006Jl-JJ for emacs-orgmode@gnu.org; Thu, 21 Oct 2010 11:27:57 +0200 Received: from 109.46.207.87 ([109.46.207.87]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 21 Oct 2010 11:27:57 +0200 Received: from drholgerwenzel by 109.46.207.87 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 21 Oct 2010 11:27:57 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi Jeff, > Well, I just answered my own question as far as getting MobileOrg to > work... I just set the WebDAV directory to a local directory within > Dropbox. I thought it had to be WebDAV (like that would make a > difference). > > I'm still interested to know what everyone uses to sync working files, though. I've got my Android rooted and have a ssh server running there. Then I use the following hooks to run the scp command to copy the files back and forth. (setq org-mobile-post-push-hook '(lambda () (shell-command "scp ~/org/mobile/*.org magic_home:/sdcard/stage") )) (setq org-mobile-pre-pull-hook '(lambda () (shell-command "scp magic_home:/sdcard/mobileorg/mobileorg.org /home/hw/org/mobile") ) ) So my org files never leave my network and all traffic is encrypted. There is an ftp-server available for Android phones that should let you do similar things, if you didn't root your phone. Holger