Gnus development mailing list
 help / color / mirror / Atom feed
From: Dave Goldberg <david.goldberg6@verizon.net>
To: ding@gnus.org
Subject: Re: Forwarding rfc822 messages
Date: Sun, 31 Oct 2010 23:51:51 -0400	[thread overview]
Message-ID: <84oca9wvjc.fsf@davestoy.home> (raw)
In-Reply-To: <m3y69euh3o.fsf_-_@quimbies.gnus.org> (Lars Magne Ingebrigtsen's	message of "Sun, 31 Oct 2010 23:34:19 +0100")


> Mario Peter <empee0@googlemail.com> writes:
>> I know the way via digest and mail, but this can be done only from the
>> same group and I would like to do this seperately - maybe reading the
>> article, command to capture this article, go to message buffer, insert
>> capured mail in a mml section.

> It seems like `S o m' is a pretty easy option -- I mean, after getting
> the Message buffer, you can just edit out any of the stuff you don't
> want, can't you?

> I'm not really seeing a use case here, so perhaps I'm misunderstanding
> what you mean...

I'm not sure I'm following the OP either, but here's my use case and solution for something that I think is akin to this request.

At work, where I manage a group of sysadmins, we use a trouble ticket system (RT) that allows many in my group to handle tickets entirely through email.  Our users are not aware of this and often sent replies with CCs directly to particular admins, resulting in several copies of messages,  some of which lack the necessary CC to keep a message tracked by RT falls off the list.  When it happens with me (I do use the web interface so I can tell if a message in my inbox has not been included) I want to get the message into the ticket - perhaps it contains troubleshooting data that we've asked the user to provide.  Simple forwarding can be a pain because then I'd have to fill in the Subject in a particular way.  Easier for me is to start a reply on a proper email in the ticket and then attach t
 he other message as part of the composition.  So my summary line format includes the message number and I've written this simple function, bound to C-c C-m C-m.

(defun dsg-message-attach-article (group message)
  (interactive
   (list (completing-read
	  "Group: " gnus-active-hashtb nil
	  (gnus-read-active-file-p)
	  nil
	  'gnus-group-history)
	 (read-number "Message: " t)))
  (let ((tmp (get-buffer-create (generate-new-buffer-name "*MSGTMP*"))))
    (save-excursion
      (set-buffer tmp)
      (gnus-request-article-this-buffer message group))
    (mml-attach-buffer (buffer-name tmp) "message/rfc822")))


-- 
Dave Goldberg
david.goldberg6@verizon.net



  reply	other threads:[~2010-11-01  3:51 UTC|newest]

Thread overview: 113+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-19 19:53 Outstanding stuff? Lars Magne Ingebrigtsen
2010-10-19 21:46 ` Steinar Bang
2010-10-20  0:11   ` Lars Magne Ingebrigtsen
2010-10-20 10:47     ` Steinar Bang
2010-10-21 17:16   ` Tibor Simko
2010-10-20  0:24 ` Dan Christensen
2010-10-20 15:09   ` Ted Zlatanov
2010-10-20 17:34     ` Lars Magne Ingebrigtsen
2010-10-20 17:59       ` Ted Zlatanov
2010-10-20 18:03         ` Lars Magne Ingebrigtsen
2010-10-20 18:39           ` Ted Zlatanov
2010-10-20 17:35   ` Lars Magne Ingebrigtsen
2010-10-21  1:14     ` Lars Magne Ingebrigtsen
2010-10-28  1:05       ` Dan Christensen
2010-10-29 22:40         ` Lars Magne Ingebrigtsen
2010-11-01 17:28           ` Dan Christensen
2010-11-01 18:48             ` Lars Magne Ingebrigtsen
2010-10-20  7:51 ` Julien Danjou
2010-10-21 15:52   ` Lars Magne Ingebrigtsen
2010-10-21 16:03     ` Julien Danjou
2010-10-21 20:27       ` Dave Goldberg
2010-10-21 22:22         ` Dan Christensen
2010-10-23 13:16       ` Julien Danjou
2010-10-24  4:28         ` Lars Magne Ingebrigtsen
2010-10-20  9:34 ` Robert Pluim
2010-10-20 11:12   ` Ted Zlatanov
2010-10-24 17:20   ` Lars Magne Ingebrigtsen
2010-10-25  7:18     ` Robert Pluim
2010-10-25 17:12       ` Steinar Bang
2010-10-25 17:25         ` Adam Sjøgren
2010-10-25 20:08           ` Steinar Bang
2010-10-25 20:11             ` Adam Sjøgren
2010-10-25 17:14       ` Steinar Bang
2010-10-25 17:24         ` Robert Pluim
2010-10-25 20:11           ` Steinar Bang
2010-10-25 22:48             ` Steinar Bang
2010-10-29 22:24             ` Lars Magne Ingebrigtsen
2010-10-25 18:19     ` Ted Zlatanov
2010-10-29 22:27       ` Lars Magne Ingebrigtsen
2010-10-26  0:59     ` Dan Christensen
2010-10-26  6:30       ` Steinar Bang
2010-10-29 22:28         ` Lars Magne Ingebrigtsen
2010-10-30  8:25           ` Steinar Bang
2010-10-30 11:12             ` Lars Magne Ingebrigtsen
2010-10-30 14:16               ` Steinar Bang
2010-10-30 16:45                 ` Agent improvements (was: Outstanding stuff?) Lars Magne Ingebrigtsen
2010-10-30 17:45                   ` Agent improvements Steinar Bang
2010-10-30 19:28                     ` Lars Magne Ingebrigtsen
2010-10-30 20:30                       ` Steinar Bang
2010-10-20 10:49 ` Outstanding stuff? Steinar Bang
2010-10-21 16:17   ` Lars Magne Ingebrigtsen
2010-10-20 11:53 ` Gijs Hillenius
2010-10-21 16:19   ` Lars Magne Ingebrigtsen
2010-10-20 12:24 ` Ted Zlatanov
2010-10-20 16:30   ` Lars Magne Ingebrigtsen
2010-10-20 16:34     ` Ted Zlatanov
2010-10-20 17:13       ` Lars Magne Ingebrigtsen
2010-10-20 14:40 ` Julien Danjou
2010-10-21  9:18   ` Julien Danjou
2010-10-21 16:21   ` Lars Magne Ingebrigtsen
2010-10-21 16:25     ` Julien Danjou
2010-10-20 15:11 ` Ted Zlatanov
2010-10-21 16:23   ` Lars Magne Ingebrigtsen
2010-10-21 17:36 ` Tibor Simko
2010-10-21 17:39   ` Lars Magne Ingebrigtsen
2010-10-21 20:14     ` Tibor Simko
2010-10-24  4:40       ` Lars Magne Ingebrigtsen
2010-10-30 19:58         ` Tibor Simko
2010-10-30 20:03           ` Lars Magne Ingebrigtsen
2010-10-30 21:14             ` Tibor Simko
2010-11-01 12:38               ` Tibor Simko
2010-11-01 18:24                 ` Lars Magne Ingebrigtsen
2010-11-02  9:19                   ` Tibor Simko
2010-11-04 19:53                     ` Lars Magne Ingebrigtsen
2010-10-21 18:41 ` Rémi Letot
2010-10-24  4:20   ` Lars Magne Ingebrigtsen
2010-10-24  8:49     ` Rémi Letot
2010-10-24 16:20       ` Lars Magne Ingebrigtsen
2010-10-24 19:07         ` Rémi Letot
2010-10-24 19:14           ` Lars Magne Ingebrigtsen
2010-10-24 19:16             ` Rémi Letot
2010-10-24 19:19               ` Lars Magne Ingebrigtsen
2010-10-24 19:30                 ` Rémi Letot
2010-10-24 19:33                   ` Lars Magne Ingebrigtsen
2010-10-24 19:42                     ` Rémi Letot
2010-10-24 19:44                       ` Lars Magne Ingebrigtsen
2010-10-24 19:50                         ` Rémi Letot
2010-10-24 19:52                           ` Lars Magne Ingebrigtsen
2010-10-24 19:57                             ` Rémi Letot
2010-10-24 20:00                               ` Lars Magne Ingebrigtsen
2010-10-24 20:40                                 ` Rémi Letot
2010-10-21 19:10 ` Robert Pluim
2010-10-24  4:23   ` Lars Magne Ingebrigtsen
2010-10-31 22:25 ` Mario Peter
2010-10-31 22:34   ` Forwarding rfc822 messages (was: Outstanding stuff?) Lars Magne Ingebrigtsen
2010-11-01  3:51     ` Dave Goldberg [this message]
2010-11-01 22:42       ` Forwarding rfc822 messages Mario Peter
2010-11-01  6:57     ` Mario Peter
2010-11-01 18:16       ` Lars Magne Ingebrigtsen
2010-11-01 22:16         ` Mario Peter
2010-11-02  7:17         ` Reiner Steib
2010-11-02 19:40           ` Lars Magne Ingebrigtsen
2010-12-05  0:21 ` Outstanding stuff? Steinar Bang
2010-12-05 12:06   ` Sender header (was: Outstanding stuff?) Lars Magne Ingebrigtsen
2010-12-05 12:39     ` Sender header Byung-Hee HWANG
2010-12-05 18:18     ` Steinar Bang
2010-12-05 18:35       ` Lars Magne Ingebrigtsen
2010-12-05 18:41         ` Lars Magne Ingebrigtsen
2010-12-05 22:09           ` Steinar Bang
2010-12-05 22:42             ` Lars Magne Ingebrigtsen
2010-12-06 20:24               ` Steinar Bang
2010-12-06 20:47                 ` Lars Magne Ingebrigtsen
2010-12-06 20:50                 ` Steinar Bang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=84oca9wvjc.fsf@davestoy.home \
    --to=david.goldberg6@verizon.net \
    --cc=ding@gnus.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).