From mboxrd@z Thu Jan 1 00:00:00 1970 From: Feng Shu Subject: Re: Handling outdated contact information Date: Fri, 31 May 2013 20:12:20 +0800 Message-ID: <871u8n73h7.fsf@news.tumashu-localhost.org> References: <87li6yx8u9.fsf@news.tumashu-localhost.org> <87wqqhlchq.fsf@tanger.home> <2013-05-30T19-33-07@devnull.Karl-Voit.at> <874ndk9fov.fsf@tanger.home> <2013-05-31T11-39-01@devnull.Karl-Voit.at> <87vc5z5s82.fsf@tanger.home> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56217) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UiODB-0001FA-Qy for emacs-orgmode@gnu.org; Fri, 31 May 2013 08:13:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UiOD7-0001uq-CN for emacs-orgmode@gnu.org; Fri, 31 May 2013 08:13:37 -0400 Received: from mail-pb0-x22f.google.com ([2607:f8b0:400e:c01::22f]:36462) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UiOD7-0001uf-5g for emacs-orgmode@gnu.org; Fri, 31 May 2013 08:13:33 -0400 Received: by mail-pb0-f47.google.com with SMTP id rr4so2113846pbb.20 for ; Fri, 31 May 2013 05:13:32 -0700 (PDT) Received: from tumashu ([110.97.94.251]) by mx.google.com with ESMTPSA id ig4sm18366092pbc.18.2013.05.31.05.13.29 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 31 May 2013 05:13:30 -0700 (PDT) Received: from feng by tumashu with local (Exim 4.80) (envelope-from ) id 1UiOBw-0006XS-Fn for emacs-orgmode@gnu.org; Fri, 31 May 2013 20:12:20 +0800 In-Reply-To: <87vc5z5s82.fsf@tanger.home> (daimrod@gmail.com's message of "Fri, 31 May 2013 13:00:45 +0200") 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: emacs-orgmode@gnu.org Daimrod writes: > Karl Voit writes: > >> * Daimrod wrote: >>> >>> Hi Karl, >> >> Hi Daimrod! >> >>>> This is a very good patch, fixing an issue I also do have currently. >>> >>> I am curious, what was the issue? >> >> Sure: I do use contacts.org by myself and I tend to collect data >> about people and never delete any. For example, previously used >> phone numbers are quite handy in order to get a connection between >> old text messages or phone call logs and a person. >> >> However, I do not want to mess up current phone numbers with old >> ones. >> >> With this ignore feature, I am able to address this issue (in the >> future). For now, I do not export contact information from Org-mode >> to somewhere else (except: lbdb -> mutt). In the future, I plan to >> add a workflow that gets contact information form Org-mode (my >> central point of information) to my phone and so forth. > I use SSHdroid in my android phone, and use keybinding F12 to pull vcf file to my phone. In my phone, I use VcardIO update my contacts #+begin_src emacs-lisp (global-set-key (kbd "") '(lambda () (interactive) (progn (org-mobile-push) (org-contacts-export-as-vcard) (shell-command "scp ~/Documents/org-mobile/* root@192.168.1.234:/sdcard/org-mobile/") #+end_src emacs-lisp > I see, thanks for the explanation. --