From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Belohrad Subject: Re: encrypted items, but not timestamp Date: Mon, 03 Mar 2014 13:48:51 +0100 Message-ID: References: <87lhwrcvp8.fsf@bzg.ath.cx> <878usrcvci.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36724) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKSIt-0006J1-B4 for emacs-orgmode@gnu.org; Mon, 03 Mar 2014 07:49:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WKSIo-0001GV-0o for emacs-orgmode@gnu.org; Mon, 03 Mar 2014 07:49:07 -0500 In-Reply-To: <878usrcvci.fsf@bzg.ath.cx> 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: Bastien , Jonathan Leech-Pepin Cc: org-mode Mailing List Nice. So far I have made a capture template, which enters the timestamp into heading. Surprisingly it works pretty nicely as the timestamp does not appear in agenda heading 'name'. Have something like this: (require 'org-crypt) (org-crypt-use-before-save-magic) (setq org-crypt-tag-matcher "@CRYPT") (setq org-crypt-key "david@bleh") and then org-capture-templates contains following record: ("C" "Encrypted journal" entry (file+datetree (concat my-org-files "journal.org")) "* %? %T :@CRYPT:\n %a\n") works as a charm. .d. Bastien writes: > Jonathan Leech-Pepin writes: > >> I can think of one possible method (although slightly more work to do >> so): > > Indeed, good idea! > > -- > Bastien