Gnus development mailing list
 help / color / mirror / Atom feed
From: Andreas Seltenreich <andreas+ding@gate450.dyndns.org>
Subject: mailto URLs vs. gnus-ml.el
Date: Sat, 06 May 2006 22:23:55 +0200	[thread overview]
Message-ID: <87bquanbqc.fsf@gate450.dyndns.org> (raw)

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

Hi,

I just tried to subscribe to a list I was reading through gmane using
gnus-mailing-list-subscribe, but the message body that was generated
didn't look very promising:

    sub%20pgsql-committers

The attached patch fixes it by calling gnus-url-mailto instead of
ad-hoc parsing the url and manually setting up a message buffer.

Thanks,
andreas

2006-05-06  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>

	* gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto
	instead of doing it manually.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: gnus-ml.patch --]
[-- Type: text/x-patch, Size: 1513 bytes --]

Index: gnus-ml.el
===================================================================
RCS file: /usr/local/cvsroot/gnus/lisp/gnus-ml.el,v
retrieving revision 7.7
diff -c -r7.7 gnus-ml.el
*** gnus-ml.el	8 Feb 2006 04:17:15 -0000	7.7
--- gnus-ml.el	6 May 2006 20:23:03 -0000
***************
*** 170,201 ****
  
  (defun gnus-mailing-list-message (address)
    ""
!   (let ((mailto  "")
! 	(to ())
! 	(subject "None")
! 	(body "")
! 	)
!     (cond
!      ((string-match "<mailto:\\([^>]*\\)>" address)
!       (let ((args (match-string 1 address)))
! 	(cond				; with param
! 	 ((string-match "\\(.*\\)\\?\\(.*\\)" args)
! 	  (setq mailto (match-string 1 args))
! 	  (let ((param (match-string 2 args)))
! 	    (if (string-match "subject=\\([^&]*\\)" param)
! 		(setq subject (match-string 1 param)))
! 	    (if (string-match "body=\\([^&]*\\)" param)
! 		(setq body (match-string 1 param)))
! 	    (if (string-match "to=\\([^&]*\\)" param)
! 		(push (match-string 1 param) to))
! 	    ))
! 	 (t (setq mailto args)))))	; without param
! 
       ; other case <http://... to be done.
!      (t nil))
!     (gnus-setup-message 'message (message-mail mailto subject))
!     (insert body)
!     ))
  
  (provide 'gnus-ml)
  
--- 170,181 ----
  
  (defun gnus-mailing-list-message (address)
    ""
!   (cond
!    ((string-match "<\\(mailto:[^>]*\\)>" address)
!     (require 'gnus-art)
!     (gnus-url-mailto (match-string 1 address)))
       ; other case <http://... to be done.
!    (t nil)))
  
  (provide 'gnus-ml)
  

             reply	other threads:[~2006-05-06 20:23 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-05-06 20:23 Andreas Seltenreich [this message]
2006-05-29 21:28 ` Reiner Steib

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=87bquanbqc.fsf@gate450.dyndns.org \
    --to=andreas+ding@gate450.dyndns.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).