From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Re: MobileOrg Date: Sat, 1 Mar 2014 21:20:39 -0600 Message-ID: References: <86lhwvzwhh.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42797) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WJwxE-0001mj-Rp for emacs-orgmode@gnu.org; Sat, 01 Mar 2014 22:20:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WJwxD-0000Yp-Rz for emacs-orgmode@gnu.org; Sat, 01 Mar 2014 22:20:40 -0500 Received: from mail-ob0-x236.google.com ([2607:f8b0:4003:c01::236]:51251) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WJwxD-0000Yk-My for emacs-orgmode@gnu.org; Sat, 01 Mar 2014 22:20:39 -0500 Received: by mail-ob0-f182.google.com with SMTP id uz6so5526964obc.41 for ; Sat, 01 Mar 2014 19:20:39 -0800 (PST) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: David Masterson Cc: emacs-orgmode On Sat, Mar 1, 2014 at 9:14 PM, John Hendy wrote: [snip] >> 1. What needs to be setup for the first time push from Emacs to the >> Dropbox Apps/MobileOrg directory? > > I added the following to .emacs: > > #+begin_src .emacs > > ;; where are the .org files you want on your phone? > (setq org-directory "~/vault/personal/home-notes") > > ;; where is your sync directory going to be? > (setq org-mobile-directory "~/Dropbox/mobile-org") > > ;; if you make changes on your phone, where do you want the chnages > ;; to live? > (setq org-mobile-inbox-for-pull "~/vault/personal/home-notes/mobileorg.org") Skimming this to make sure I didn't mess anything up... the above caught my eye. I momentarily wondered if the inbox-for-pull file should be in my computer's directory where the master .org files are, or pointing to that file in my Dropbox folder. Checked the documentation, which says: #+begin_src org-mobile-inbox-for-pull doc org-mobile-inbox-for-pull is a variable defined in `org-mobile.el'. Its value is "~/vault/personal/home-notes/mobileorg.org" Original value was "~/org/from-mobile.org" Documentation: The file where captured notes and flags will be appended to. During the execution of `org-mobile-pull', the file `org-mobile-capture-file' will be emptied it's contents have been appended to the file given here. This file should be in `org-directory', and not in the staging area or on the web server. You can customize this variable. #+end_src So, whew. It should live in what I'm calling the "master directory" where your computer's files are, not where you're staging for sync with the phone (Dropbox in this case). John [snip]