From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: gnus org and tags Date: Fri, 14 Oct 2016 08:57:08 +0100 Message-ID: <87shrz8isr.fsf@ucl.ac.uk> References: <877f9cll7l.fsf@pinto.chemeng.ucl.ac.uk> <878ttsa4jb.fsf@mat.ucm.es> <4b55752816294d39b6537391ad54a2b1@HE1PR01MB1898.eurprd01.prod.exchangelabs.com> Reply-To: Eric S Fraga Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51691) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bv0in-00061O-VX for emacs-orgmode@gnu.org; Fri, 14 Oct 2016 07:32:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bv0ii-00058S-VE for emacs-orgmode@gnu.org; Fri, 14 Oct 2016 07:32:17 -0400 Received: from mail-ve1eur01on0108.outbound.protection.outlook.com ([104.47.1.108]:54000 helo=EUR01-VE1-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bv0ii-00057r-KF for emacs-orgmode@gnu.org; Fri, 14 Oct 2016 07:32:12 -0400 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" To: Nick Dokos Cc: "emacs-orgmode@gnu.org" On Thursday, 13 Oct 2016 at 16:02, Nick Dokos wrote: [...] > I have a single notes.org file (not an agenda file), where I do exactly what > Eric described and I have defined keys to get to it fast: no more "where did I As do I. I guess this is a key part of this use case: it must be easy to find those notes. My (abridged) capture template looks like this: #+begin_src emacs-lisp (setq org-capture-templates '( ("m" "Mail options") ("mt" "mailtodo" entry (file+datetree "~/s/notes/tasks.org") "* TODO %^{Task} : %:subject %^G\nSCHEDULED: %t\n- From :: %:from\n- Subject :: %:subject\n- Email :: %a\n\n%?" :kill-buffer t) ("mn" "mailnote" entry (file+headline "~/s/notes/notes.org" "general notes and tasks") "* %^{Title} : %:subject %^G\n- From :: %:from\n- Subject :: %:subject\n- Email :: %a\n\n%?\n\n%U") )) #+end_src Tag search etc. in org makes finding the notes relatively painless. As a bonus, the "mt" template is to allow me to get to INBOX 0 by making sure I don't leave emails lying around unread or ticked. If they need further processing, an appropriate TODO task is created which links back to the email. This task is scheduled for immediate action by default but obviously easily changed during the capture, very often by unscheduling but adding a deadline, for instance. -- : Eric S Fraga (0xFFFCF67D), Emacs 25.2.50.1, Org release_8.3.6-1184-g29830f