comparison lisp/mail/feedmail.el @ 33424:82e71ffbac94

Fix header, (feedmail) <defgroup>: Add :link.
author Dave Love <fx@gnu.org>
date Sun, 12 Nov 2000 00:57:08 +0000
parents 6dc236826c61
children d81160aa663f
comparison
equal deleted inserted replaced
33423:d4a37dfbba9d 33424:82e71ffbac94
1 ;;; feedmail.el --- assist other email packages to massage outgoing messages 1 ;;; feedmail.el --- assist other email packages to massage outgoing messages
2 ;;; This file is in the public domain. 2 ;;; This file is in the public domain.
3
4 ;; Author: Bill Carpenter <bill@bubblegum.net>, <bill@carpenter.ORG>
5 ;; Version: 8
6 ;; Keywords: email, queue, mail, sendmail, message, spray, smtp, draft
7 ;; X-URL: <URL:http://www.carpenter.org/feedmail/feedmail.html>
3 8
4 ;;; Commentary: 9 ;;; Commentary:
5 10
6 ;; A replacement for parts of Emacs' sendmail.el (specifically, 11 ;; A replacement for parts of Emacs' sendmail.el (specifically,
7 ;; it's what handles your outgoing mail after you hit C-c C-c in mail 12 ;; it's what handles your outgoing mail after you hit C-c C-c in mail
17 22
18 ;; As far as I'm concerned, anyone can do anything they want with 23 ;; As far as I'm concerned, anyone can do anything they want with
19 ;; this specific piece of code. No warranty or promise of support is 24 ;; this specific piece of code. No warranty or promise of support is
20 ;; offered. This code is hereby released into the public domain. 25 ;; offered. This code is hereby released into the public domain.
21 26
22 ;; Author: Bill Carpenter <bill@bubblegum.net>, <bill@carpenter.ORG>
23 ;; Version: 8
24 ;; Keywords: email, queue, mail, sendmail, message, spray, smtp, draft
25 ;; Where: <URL:http://www.carpenter.org/feedmail/feedmail.html>
26 ;; Thanks: My thanks to the many people who have sent me suggestions 27 ;; Thanks: My thanks to the many people who have sent me suggestions
27 ;; and fixes over time, as well as those who have tested many beta 28 ;; and fixes over time, as well as those who have tested many beta
28 ;; iterations. Some are cited in comments in code fragments below, 29 ;; iterations. Some are cited in comments in code fragments below,
29 ;; but that doesn't correlate well with the list of folks who have 30 ;; but that doesn't correlate well with the list of folks who have
30 ;; actually helped me along the way. 31 ;; actually helped me along the way.
300 (` (defvar (, var) (, value) (, doc)))))) 301 (` (defvar (, var) (, value) (, doc))))))
301 302
302 303
303 (defgroup feedmail nil 304 (defgroup feedmail nil
304 "Assist other email packages to massage outgoing messages." 305 "Assist other email packages to massage outgoing messages."
306 :link (url-link "http://www.carpenter.org/feedmail/feedmail.html")
305 :group 'mail) 307 :group 'mail)
306 308
307 (defgroup feedmail-misc nil 309 (defgroup feedmail-misc nil
308 "Miscellaneous feedmail options that don't fit in other groups." 310 "Miscellaneous feedmail options that don't fit in other groups."
309 :group 'feedmail) 311 :group 'feedmail)