1 ;;; gnus-delay.el --- Delayed posting of articles
3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 ;; Free Software Foundation, Inc.
6 ;; Author: Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7 ;; Keywords: mail, news, extensions
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; Provide delayed posting of articles.
30 ;; * `gnus-delay-send-queue' barfs when group does not exist.
31 ;; * Integrate gnus-delay.el into the rest of Gnus automatically. How
32 ;; should this be done? Basically, we need to do what
33 ;; `gnus-delay-initialize' does. But in which files?
39 (autoload 'parse-time-string
"parse-time" nil nil
)
41 (defgroup gnus-delay nil
42 "Arrange for sending postings later."
46 (defcustom gnus-delay-group
"delayed"
47 "Group name for storing delayed articles."
51 (defcustom gnus-delay-header
"X-Gnus-Delayed"
52 "Header name for storing info about delayed articles."
56 (defcustom gnus-delay-default-delay
"3d"
57 "*Default length of delay."
61 (defcustom gnus-delay-default-hour
8
62 "*If deadline is given as date, then assume this time of day."
68 (defun gnus-delay-article (delay)
69 "Delay this article by some time.
70 DELAY is a string, giving the length of the time. Possible values are:
72 * <digits><units> for <units> in minutes (`m'), hours (`h'), days (`d'),
73 weeks (`w'), months (`M'), or years (`Y');
75 * YYYY-MM-DD for a specific date. The time of day is given by the
76 variable `gnus-delay-default-hour', minute and second are zero.
78 * hh:mm for a specific time. Use 24h format. If it is later than this
79 time, then the deadline is tomorrow, else today."
82 "Target date (YYYY-MM-DD) or length of delay (units in [mhdwMY]): "
83 gnus-delay-default-delay
)))
84 (let (num unit days year month day hour minute deadline
)
86 "\\([0-9][0-9][0-9]?[0-9]?\\)-\\([0-9]+\\)-\\([0-9]+\\)"
88 (setq year
(string-to-number (match-string 1 delay
))
89 month
(string-to-number (match-string 2 delay
))
90 day
(string-to-number (match-string 3 delay
)))
93 (encode-time 0 0 ; second and minute
94 gnus-delay-default-hour
96 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" delay
)
97 (setq hour
(string-to-number (match-string 1 delay
))
98 minute
(string-to-number (match-string 2 delay
)))
99 ;; Use current time, except...
100 (setq deadline
(apply 'vector
(decode-time (current-time))))
101 ;; ... for minute and hour.
102 (aset deadline
1 minute
)
103 (aset deadline
2 hour
)
104 ;; Convert to seconds.
105 (setq deadline
(gnus-float-time (apply 'encode-time
106 (append deadline nil
))))
107 ;; If this time has passed already, add a day.
108 (when (< deadline
(gnus-float-time))
109 (setq deadline
(+ 3600 deadline
))) ;3600 secs/day
110 ;; Convert seconds to date header.
111 (setq deadline
(message-make-date
112 (seconds-to-time deadline
))))
113 ((string-match "\\([0-9]+\\)\\s-*\\([mhdwMY]\\)" delay
)
114 (setq num
(match-string 1 delay
))
115 (setq unit
(match-string 2 delay
))
116 ;; Start from seconds, then multiply into needed units.
117 (setq num
(string-to-number num
))
118 (cond ((string= unit
"Y")
119 (setq delay
(* num
60 60 24 365)))
121 (setq delay
(* num
60 60 24 30)))
123 (setq delay
(* num
60 60 24 7)))
125 (setq delay
(* num
60 60 24)))
127 (setq delay
(* num
60 60)))
129 (setq delay
(* num
60))))
130 (setq deadline
(message-make-date
131 (seconds-to-time (+ (gnus-float-time) delay
)))))
132 (t (error "Malformed delay `%s'" delay
)))
133 (message-add-header (format "%s: %s" gnus-delay-header deadline
)))
134 (set-buffer-modified-p t
)
135 ;; If group does not exist, create it.
136 (let ((group (format "nndraft:%s" gnus-delay-group
)))
137 (gnus-agent-queue-setup gnus-delay-group
))
138 (message-disassociate-draft)
139 (nndraft-request-associate-buffer gnus-delay-group
)
141 (kill-buffer (current-buffer))
142 (message-do-actions message-postpone-actions
))
145 (defun gnus-delay-send-queue ()
146 "Send all the delayed messages that are due now."
149 (let* ((group (format "nndraft:%s" gnus-delay-group
))
150 (message-send-hook (copy-sequence message-send-hook
))
153 (when (gnus-group-entry group
)
154 (gnus-activate-group group
)
155 (add-hook 'message-send-hook
157 (message-remove-header gnus-delay-header
)))
158 (setq articles
(nndraft-articles))
159 (while (setq article
(pop articles
))
160 (gnus-request-head article group
)
161 (set-buffer nntp-server-buffer
)
162 (goto-char (point-min))
163 (if (re-search-forward
164 (concat "^" (regexp-quote gnus-delay-header
) ":\\s-+")
167 (setq deadline
(nnheader-header-value))
168 (setq deadline
(apply 'encode-time
169 (parse-time-string deadline
)))
170 (setq deadline
(time-since deadline
))
171 (when (and (>= (nth 0 deadline
) 0)
172 (>= (nth 1 deadline
) 0))
173 (message "Sending delayed article %d" article
)
174 (gnus-draft-send article group
)
175 (message "Sending delayed article %d...done" article
)))
176 (message "Delay header missing for article %d" article
)))))))
179 (defun gnus-delay-initialize (&optional no-keymap no-check
)
180 "Initialize the gnus-delay package.
181 This sets up a key binding in `message-mode' to delay a message.
182 This tells Gnus to look for delayed messages after getting new news.
184 The optional arg NO-KEYMAP is ignored.
185 Checking delayed messages is skipped if optional arg NO-CHECK is non-nil."
187 (add-hook 'gnus-get-new-news-hook
'gnus-delay-send-queue
)))
189 (provide 'gnus-delay
)
192 ;; coding: iso-8859-1
195 ;; arch-tag: fb2ad634-a897-4142-a503-f5991ec2349d
196 ;;; gnus-delay.el ends here