From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chris Malone Subject: Re: Re: Outlook replacement Date: Fri, 25 Mar 2011 17:21:18 -0400 Message-ID: References: <87aagjdo5g.fsf@gmail.com> <80r59uyk7g.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=bcaec51f96d9c14973049f552c40 Return-path: Received: from [140.186.70.92] (port=42662 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q3EUD-0005IL-AG for emacs-orgmode@gnu.org; Fri, 25 Mar 2011 17:26:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q3ERb-0000KV-Lg for emacs-orgmode@gnu.org; Fri, 25 Mar 2011 17:21:20 -0400 Received: from mail-iy0-f169.google.com ([209.85.210.169]:52548) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q3ERb-0000KM-Fj for emacs-orgmode@gnu.org; Fri, 25 Mar 2011 17:21:19 -0400 Received: by iyf13 with SMTP id 13so1915420iyf.0 for ; Fri, 25 Mar 2011 14:21:18 -0700 (PDT) In-Reply-To: <80r59uyk7g.fsf@somewhere.org> 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: =?ISO-8859-1?Q?S=E9bastien_Vauban?= Cc: emacs-orgmode@gnu.org --bcaec51f96d9c14973049f552c40 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi Seb and Eric, Thanks for the advice - the info and sample .gnus file were great! Chris 2011/3/25 S=E9bastien Vauban > Chris Malone, > > Chris Malone wrote: > > Hi Henri-Paul, > > > > While you've brought the topic up I /have/ been recently curious about > > others' email setup and how they incorporate that into Emacs/org-mode? = I > > notice several users send emails from within Emacs using org-mode synta= x > - > > any tips on setting such a thing up? > > For the list and table stuff, here's an example from my .gnus file: > > #+begin_src emacs-lisp > ;; operates on messages you send > (defun my/message-mode-hook () > > ;; tab completion for alias in `.mailrc' > (local-set-key (kbd "M-TAB") 'mail-abbrev-complete-alias) > > ;; enable automatic word-wrap when composing messages > (setq fill-column 78) > (turn-on-auto-fill) > > (when (try-require 'org-footnote) > ;; default style used for footnoting is local to the Message bei= ng > ;; written > (set (make-local-variable 'org-footnote-auto-label) 'plain)) > > (when (locate-library "org.el") > > ;; turn on the `org-mode' table editor > (turn-on-orgtbl) > > ;; turn on orgstruct-mode > (turn-on-orgstruct) > > ;; turn on the enhanced version of orgstruct-mode > (turn-on-orgstruct++))) > > (add-hook 'message-mode-hook 'my/message-mode-hook) > #+end_src > > For "Org-mode syntax" (putting codes as the above): > > - simply copy/paste, > - select region with C-x C-x, > - demarcate block with C-c C-v C-d and insert the correct language (here: > emacs-lisp). > > > Also, how do you handle outside email accounts, for example, from gmail= ? > > What do you mean? Accessing them? That can be done from Emacs, although= I > did not set this up (yet). > > Does the above meet your question? > > Best regards, > Seb > > -- > S=E9bastien Vauban > > > --bcaec51f96d9c14973049f552c40 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi Seb and Eric,

Thanks for the advice - the info and sample .gnus f= ile were great!

Chris

2011/3/25 S= =E9bastien Vauban <wxhgmqzgwmuf@spammotel.com>
Chris Malone,

Chris Malone wrote:
> Hi Henri-Paul,
>
> While you've brought the topic up I /have/ been recently curious a= bout
> others' email setup and how they incorporate that into Emacs/org-m= ode? =A0I
> notice several users send emails from within Emacs using org-mode synt= ax -
> any tips on setting such a thing up?

For the list and table stuff, here's an example from my .gnus fil= e:

#+begin_src emacs-lisp
=A0 =A0 =A0;; operates on messages you send
=A0 =A0 =A0(defun my/message-mode-hook ()

=A0 =A0 =A0 =A0;; tab completion for alias in `.mailrc'
=A0 =A0 =A0 =A0(local-set-key (kbd "M-TAB") 'mail-abbrev-com= plete-alias)

=A0 =A0 =A0 =A0;; enable automatic word-wrap when composing messages
=A0 =A0 =A0 =A0(setq fill-column 78)
=A0 =A0 =A0 =A0(turn-on-auto-fill)

=A0 =A0 =A0 =A0(when (try-require 'org-footnote)
=A0 =A0 =A0 =A0 =A0;; default style used for footnoting is local to the Me= ssage being
=A0 =A0 =A0 =A0 =A0;; written
=A0 =A0 =A0 =A0 =A0(set (make-local-variable 'org-footnote-auto-label)= 'plain))

=A0 =A0 =A0 =A0(when (locate-library "org.el")

=A0 =A0 =A0 =A0 =A0;; turn on the `org-mode' table editor
=A0 =A0 =A0 =A0 =A0(turn-on-orgtbl)

=A0 =A0 =A0 =A0 =A0;; turn on orgstruct-mode
=A0 =A0 =A0 =A0 =A0(turn-on-orgstruct)

=A0 =A0 =A0 =A0 =A0;; turn on the enhanced version of orgstruct-mode
=A0 =A0 =A0 =A0 =A0(turn-on-orgstruct++)))

=A0 =A0 =A0(add-hook 'message-mode-hook 'my/message-mode-hook)
#+end_src

For "Org-mode syntax" (putting codes as the above):

- simply copy/paste,
- select region with C-x C-x,
- demarcate block with C-c C-v C-d and insert the correct language (here: =A0emacs-lisp).

> Also, how do you handle outside email accounts, for example, from gmai= l?

What do you mean? =A0Accessing them? =A0That can be done from Emacs, = although I
did not set this up (yet).

Does the above meet your question?

Best regards,
=A0Seb

--
S=E9bastien Vauban



--bcaec51f96d9c14973049f552c40--