all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* save email(gnus) in org format
@ 2024-12-20 17:05 Uwe Brauer via General discussions about Org-mode.
  2024-12-20 18:29 ` Jean Louis
  0 siblings, 1 reply; 4+ messages in thread
From: Uwe Brauer via General discussions about Org-mode. @ 2024-12-20 17:05 UTC (permalink / raw)
  To: emacs-orgmode


Hi

Vanilla gnus offers to save single messages in the following format 

--8<---------------cut here---------------start------------->8---
* gnus-summary-save-in-rmail (Rmail format)
* gnus-summary-save-in-mail (Unix mail format)
* gnus-summary-save-in-folder (MH folder)
* gnus-summary-save-in-file (article format)
* gnus-summary-save-body-in-file (article body)
* gnus-summary-save-in-vm (use VM’s folder format)
* gnus-summary-write-to-file (article format -- overwrite)
* gnus-summary-write-body-to-file (article body -- overwrite)
* gnus-summary-save-in-pipe (article format)
--8<---------------cut here---------------end--------------->8---


Does somebody knows about a package that allows to save in org format,
where the org header is the from field, say


Thanks

Uwe Brauer 
-- 
I strongly condemn Hamas heinous despicable pogroms/atrocities on Israel
I strongly condemn Putin's war of aggression against Ukraine.
I support to deliver weapons to Ukraine's military. 
I support the EU and NATO membership of Ukraine. 




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: save email(gnus) in org format
  2024-12-20 17:05 save email(gnus) in org format Uwe Brauer via General discussions about Org-mode.
@ 2024-12-20 18:29 ` Jean Louis
  2024-12-24 16:57   ` Zororg via General discussions about Org-mode.
  0 siblings, 1 reply; 4+ messages in thread
From: Jean Louis @ 2024-12-20 18:29 UTC (permalink / raw)
  To: emacs-orgmode

* Uwe Brauer via "General discussions about Org-mode. <emacs-orgmode@gnu.org> [2024-12-20 20:12]:
> 
> Hi
> 
> Vanilla gnus offers to save single messages in the following format 
> 
> --8<---------------cut here---------------start------------->8---
> * gnus-summary-save-in-rmail (Rmail format)
> * gnus-summary-save-in-mail (Unix mail format)
> * gnus-summary-save-in-folder (MH folder)
> * gnus-summary-save-in-file (article format)
> * gnus-summary-save-body-in-file (article body)
> * gnus-summary-save-in-vm (use VM’s folder format)
> * gnus-summary-write-to-file (article format -- overwrite)
> * gnus-summary-write-body-to-file (article body -- overwrite)
> * gnus-summary-save-in-pipe (article format)
> --8<---------------cut here---------------end--------------->8---
> 
> 
> Does somebody knows about a package that allows to save in org format,
> where the org header is the from field, say

I think it is interesting idea. 

How about instead of converting, only displaying it in Org format?

I am using Org for display and dashboards, automatically generated. So
tools like mu4e could be used to display the e-mail by using extra
function, to make it Org viewable format.

Even automatic hyperlinking could be involved.

-- 
Jean Louis


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: save email(gnus) in org format
  2024-12-20 18:29 ` Jean Louis
@ 2024-12-24 16:57   ` Zororg via General discussions about Org-mode.
  2024-12-26  7:35     ` Uwe Brauer via General discussions about Org-mode.
  0 siblings, 1 reply; 4+ messages in thread
From: Zororg via General discussions about Org-mode. @ 2024-12-24 16:57 UTC (permalink / raw)
  To: emacs-orgmode


> * Uwe Brauer via "General discussions about Org-mode. <emacs-orgmode@gnu.org> [2024-12-20 20:12]:
>>
>> Hi
>>
>> Vanilla gnus offers to save single messages in the following format
>>
>> --8<---------------cut here---------------start------------->8---
>> * gnus-summary-save-in-rmail (Rmail format)
>> * gnus-summary-save-in-mail (Unix mail format)
>> * gnus-summary-save-in-folder (MH folder)
>> * gnus-summary-save-in-file (article format)
>> * gnus-summary-save-body-in-file (article body)
>> * gnus-summary-save-in-vm (use VM’s folder format)
>> * gnus-summary-write-to-file (article format -- overwrite)
>> * gnus-summary-write-body-to-file (article body -- overwrite)
>> * gnus-summary-save-in-pipe (article format)
>> --8<---------------cut here---------------end--------------->8---
>>
>>
>> Does somebody knows about a package that allows to save in org format,
>> where the org header is the from field, say
>
> I think it is interesting idea.
>
> How about instead of converting, only displaying it in Org format?
>
> I am using Org for display and dashboards, automatically generated. So
> tools like mu4e could be used to display the e-mail by using extra
> function, to make it Org viewable format.
>
> Even automatic hyperlinking could be involved.

Even I'm interested, I have to craft a way of saving things with org.

I noticed during Orgmeetup, yantar92 (Ihor, the Org maintainer) does
org-capture on mail.

Related config I found in config
(https://github.com/yantar92/emacs-config/blob/master/config.org#capture-mail-to-org-task)

The author uses notmuch and another external package (org-capture-xref),
but I think for gnus the backend should be easy to implement.

Hope so you know, we can compose mail in org as well, using org-mime.

-- 
Zororg


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: save email(gnus) in org format
  2024-12-24 16:57   ` Zororg via General discussions about Org-mode.
@ 2024-12-26  7:35     ` Uwe Brauer via General discussions about Org-mode.
  0 siblings, 0 replies; 4+ messages in thread
From: Uwe Brauer via General discussions about Org-mode. @ 2024-12-26  7:35 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 948 bytes --]



> Even I'm interested, I have to craft a way of saving things with org.

> I noticed during Orgmeetup, yantar92 (Ihor, the Org maintainer) does
> org-capture on mail.

> Related config I found in config
> (https://github.com/yantar92/emacs-config/blob/master/config.org#capture-mail-to-org-task)

> The author uses notmuch and another external package (org-capture-xref),
> but I think for gnus the backend should be easy to implement.

Thanks, that looks nice, I will give it a try.

> Hope so you know, we can compose mail in org as well, using org-mime.

That I know, but I use mostly if math is involved because there are
still people who don't like to receive HTML mail.

-- 
I strongly condemn Hamas heinous despicable pogroms/atrocities on Israel
I strongly condemn Putin's war of aggression against Ukraine.
I support to deliver weapons to Ukraine's military. 
I support the EU and NATO membership of Ukraine. 


[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5684 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-12-26  7:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-20 17:05 save email(gnus) in org format Uwe Brauer via General discussions about Org-mode.
2024-12-20 18:29 ` Jean Louis
2024-12-24 16:57   ` Zororg via General discussions about Org-mode.
2024-12-26  7:35     ` Uwe Brauer via General discussions about Org-mode.

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.