2004-09-04 13:13:48 +00:00
|
|
|
;;; gnus-delay.el --- Delayed posting of articles
|
|
|
|
|
2019-01-01 00:59:58 +00:00
|
|
|
;; Copyright (C) 2001-2019 Free Software Foundation, Inc.
|
2004-09-04 13:13:48 +00:00
|
|
|
|
2013-03-05 09:13:01 -08:00
|
|
|
;; Author: Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
|
2004-09-04 13:13:48 +00:00
|
|
|
;; Keywords: mail, news, extensions
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 03:56:49 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2004-09-04 13:13:48 +00:00
|
|
|
|
2008-05-06 03:56:49 +00:00
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2004-09-04 13:13:48 +00:00
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2004-09-04 13:13:48 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Provide delayed posting of articles.
|
|
|
|
|
|
|
|
;;; Todo:
|
|
|
|
|
|
|
|
;; * `gnus-delay-send-queue' barfs when group does not exist.
|
|
|
|
;; * Integrate gnus-delay.el into the rest of Gnus automatically. How
|
|
|
|
;; should this be done? Basically, we need to do what
|
|
|
|
;; `gnus-delay-initialize' does. But in which files?
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'nndraft)
|
|
|
|
(require 'gnus-draft)
|
2005-04-05 04:10:27 +00:00
|
|
|
(autoload 'parse-time-string "parse-time" nil nil)
|
2004-09-04 13:13:48 +00:00
|
|
|
|
|
|
|
(defgroup gnus-delay nil
|
|
|
|
"Arrange for sending postings later."
|
2005-02-09 15:50:47 +00:00
|
|
|
:version "22.1"
|
2004-09-04 13:13:48 +00:00
|
|
|
:group 'gnus)
|
|
|
|
|
|
|
|
(defcustom gnus-delay-group "delayed"
|
|
|
|
"Group name for storing delayed articles."
|
|
|
|
:type 'string
|
|
|
|
:group 'gnus-delay)
|
|
|
|
|
|
|
|
(defcustom gnus-delay-header "X-Gnus-Delayed"
|
|
|
|
"Header name for storing info about delayed articles."
|
|
|
|
:type 'string
|
|
|
|
:group 'gnus-delay)
|
|
|
|
|
|
|
|
(defcustom gnus-delay-default-delay "3d"
|
Remove obsolete leading * from defcustom, defface doc strings.
* lisp/cedet/ede/linux.el, lisp/cedet/ede/project-am.el:
* lisp/cedet/ede/simple.el, lisp/cedet/semantic/bovine/c.el:
* lisp/cedet/semantic/complete.el, lisp/cedet/semantic/db.el:
* lisp/cedet/semantic/decorate/include.el:
* lisp/cedet/semantic/decorate/mode.el, lisp/cedet/semantic/format.el:
* lisp/cedet/semantic/ia.el, lisp/cedet/semantic/idle.el:
* lisp/cedet/semantic/imenu.el, lisp/cedet/semantic/lex-spp.el:
* lisp/cedet/semantic/mru-bookmark.el, lisp/cedet/semantic/sb.el:
* lisp/cedet/srecode/fields.el, lisp/ecomplete.el:
* lisp/gnus/gnus-agent.el, lisp/gnus/gnus-art.el:
* lisp/gnus/gnus-async.el, lisp/gnus/gnus-cache.el:
* lisp/gnus/gnus-cite.el, lisp/gnus/gnus-delay.el:
* lisp/gnus/gnus-diary.el, lisp/gnus/gnus-dup.el:
* lisp/gnus/gnus-fun.el, lisp/gnus/gnus-group.el:
* lisp/gnus/gnus-kill.el, lisp/gnus/gnus-msg.el:
* lisp/gnus/gnus-picon.el, lisp/gnus/gnus-salt.el:
* lisp/gnus/gnus-score.el, lisp/gnus/gnus-start.el:
* lisp/gnus/gnus-sum.el, lisp/gnus/gnus-topic.el:
* lisp/gnus/gnus-util.el, lisp/gnus/gnus-uu.el, lisp/gnus/gnus-win.el:
* lisp/gnus/gnus.el, lisp/gnus/mail-source.el, lisp/gnus/message.el:
* lisp/gnus/mm-url.el, lisp/gnus/mm-uu.el, lisp/gnus/mml.el:
* lisp/gnus/nndiary.el, lisp/gnus/nnir.el, lisp/gnus/nnmail.el:
* lisp/gnus/smiley.el, lisp/gnus/smime.el, lisp/mail/mail-extr.el:
* lisp/mh-e/mh-e.el, lisp/net/mailcap.el, lisp/net/pop3.el:
* lisp/net/starttls.el, lisp/progmodes/cc-vars.el:
* lisp/progmodes/cperl-mode.el, test/manual/cedet/tests/test.el:
Remove obsolete leading * from defcustom, defface doc strings.
2016-06-09 20:13:12 -04:00
|
|
|
"Default length of delay."
|
2004-09-04 13:13:48 +00:00
|
|
|
:type 'string
|
|
|
|
:group 'gnus-delay)
|
|
|
|
|
|
|
|
(defcustom gnus-delay-default-hour 8
|
Remove obsolete leading * from defcustom, defface doc strings.
* lisp/cedet/ede/linux.el, lisp/cedet/ede/project-am.el:
* lisp/cedet/ede/simple.el, lisp/cedet/semantic/bovine/c.el:
* lisp/cedet/semantic/complete.el, lisp/cedet/semantic/db.el:
* lisp/cedet/semantic/decorate/include.el:
* lisp/cedet/semantic/decorate/mode.el, lisp/cedet/semantic/format.el:
* lisp/cedet/semantic/ia.el, lisp/cedet/semantic/idle.el:
* lisp/cedet/semantic/imenu.el, lisp/cedet/semantic/lex-spp.el:
* lisp/cedet/semantic/mru-bookmark.el, lisp/cedet/semantic/sb.el:
* lisp/cedet/srecode/fields.el, lisp/ecomplete.el:
* lisp/gnus/gnus-agent.el, lisp/gnus/gnus-art.el:
* lisp/gnus/gnus-async.el, lisp/gnus/gnus-cache.el:
* lisp/gnus/gnus-cite.el, lisp/gnus/gnus-delay.el:
* lisp/gnus/gnus-diary.el, lisp/gnus/gnus-dup.el:
* lisp/gnus/gnus-fun.el, lisp/gnus/gnus-group.el:
* lisp/gnus/gnus-kill.el, lisp/gnus/gnus-msg.el:
* lisp/gnus/gnus-picon.el, lisp/gnus/gnus-salt.el:
* lisp/gnus/gnus-score.el, lisp/gnus/gnus-start.el:
* lisp/gnus/gnus-sum.el, lisp/gnus/gnus-topic.el:
* lisp/gnus/gnus-util.el, lisp/gnus/gnus-uu.el, lisp/gnus/gnus-win.el:
* lisp/gnus/gnus.el, lisp/gnus/mail-source.el, lisp/gnus/message.el:
* lisp/gnus/mm-url.el, lisp/gnus/mm-uu.el, lisp/gnus/mml.el:
* lisp/gnus/nndiary.el, lisp/gnus/nnir.el, lisp/gnus/nnmail.el:
* lisp/gnus/smiley.el, lisp/gnus/smime.el, lisp/mail/mail-extr.el:
* lisp/mh-e/mh-e.el, lisp/net/mailcap.el, lisp/net/pop3.el:
* lisp/net/starttls.el, lisp/progmodes/cc-vars.el:
* lisp/progmodes/cperl-mode.el, test/manual/cedet/tests/test.el:
Remove obsolete leading * from defcustom, defface doc strings.
2016-06-09 20:13:12 -04:00
|
|
|
"If deadline is given as date, then assume this time of day."
|
2005-02-09 15:50:47 +00:00
|
|
|
:version "22.1"
|
2004-09-04 13:13:48 +00:00
|
|
|
:type 'integer
|
|
|
|
:group 'gnus-delay)
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun gnus-delay-article (delay)
|
|
|
|
"Delay this article by some time.
|
|
|
|
DELAY is a string, giving the length of the time. Possible values are:
|
|
|
|
|
|
|
|
* <digits><units> for <units> in minutes (`m'), hours (`h'), days (`d'),
|
|
|
|
weeks (`w'), months (`M'), or years (`Y');
|
|
|
|
|
|
|
|
* YYYY-MM-DD for a specific date. The time of day is given by the
|
|
|
|
variable `gnus-delay-default-hour', minute and second are zero.
|
|
|
|
|
|
|
|
* hh:mm for a specific time. Use 24h format. If it is later than this
|
|
|
|
time, then the deadline is tomorrow, else today."
|
|
|
|
(interactive
|
|
|
|
(list (read-string
|
2011-02-13 23:30:55 +00:00
|
|
|
"Target date (YYYY-MM-DD), time (hh:mm), or length of delay (units in [mhdwMY]): "
|
2004-09-04 13:13:48 +00:00
|
|
|
gnus-delay-default-delay)))
|
2013-08-02 13:34:22 +00:00
|
|
|
;; Allow spell checking etc.
|
|
|
|
(run-hooks 'message-send-hook)
|
2004-09-04 13:13:48 +00:00
|
|
|
(let (num unit days year month day hour minute deadline)
|
|
|
|
(cond ((string-match
|
|
|
|
"\\([0-9][0-9][0-9]?[0-9]?\\)-\\([0-9]+\\)-\\([0-9]+\\)"
|
|
|
|
delay)
|
|
|
|
(setq year (string-to-number (match-string 1 delay))
|
|
|
|
month (string-to-number (match-string 2 delay))
|
|
|
|
day (string-to-number (match-string 3 delay)))
|
|
|
|
(setq deadline
|
|
|
|
(message-make-date
|
|
|
|
(encode-time 0 0 ; second and minute
|
|
|
|
gnus-delay-default-hour
|
|
|
|
day month year))))
|
|
|
|
((string-match "\\([0-9]+\\):\\([0-9]+\\)" delay)
|
|
|
|
(setq hour (string-to-number (match-string 1 delay))
|
|
|
|
minute (string-to-number (match-string 2 delay)))
|
|
|
|
;; Use current time, except...
|
2019-08-17 15:39:18 -07:00
|
|
|
(setq deadline (decode-time nil nil t))
|
2004-09-04 13:13:48 +00:00
|
|
|
;; ... for minute and hour.
|
Simplify use of encode-time
Most uses of (apply #'encode-time foo) can now be replaced
with (encode-time foo). Make similar simplifications.
* lisp/calendar/time-date.el (date-to-time):
* lisp/calendar/timeclock.el (timeclock-when-to-leave)
(timeclock-day-base, timeclock-generate-report):
* lisp/emacs-lisp/timer.el (timer-set-idle-time):
* lisp/eshell/esh-util.el (eshell-parse-ange-ls):
* lisp/gnus/gnus-art.el (article-make-date-line):
* lisp/gnus/gnus-delay.el (gnus-delay-article)
(gnus-delay-send-queue):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event--decode-datefield):
* lisp/gnus/gnus-logic.el (gnus-advanced-date):
* lisp/gnus/message.el (message-make-expires-date):
* lisp/gnus/nndiary.el (nndiary-compute-reminders):
* lisp/mail/ietf-drums.el (ietf-drums-parse-date):
* lisp/net/tramp-adb.el (tramp-adb-ls-output-time-less-p):
* lisp/org/org-agenda.el (org-agenda-get-timestamps)
(org-agenda-get-progress, org-agenda-show-clocking-issues):
* lisp/org/org-capture.el (org-capture-set-target-location):
* lisp/org/org-clock.el (org-clock-get-sum-start, org-clock-sum)
(org-clocktable-steps):
* lisp/org/org-colview.el (org-colview-construct-allowed-dates)
* lisp/org/org-macro.el (org-macro--vc-modified-time):
* lisp/org/org-table.el (org-table-eval-formula):
* lisp/org/org.el (org-current-time, org-store-link)
(org-time-today, org-read-date, org-read-date-display)
(org-display-custom-time, org-time-string-to-time)
(org-timestamp-change, org-timestamp--to-internal-time):
* lisp/url/url-dav.el (url-dav-process-date-property):
* lisp/vc/vc-cvs.el (vc-cvs-annotate-current-time)
(vc-cvs-parse-entry):
Simplify use of encode-time.
* lisp/org/org-clock.el (org-clock-get-clocked-time):
(org-clock-resolve, org-resolve-clocks, org_clock_out)
(org-clock-update-time-maybe):
Avoid some rounding problems with encode-time and float-time.
* lisp/org/org-clock.el (org-clock-in, org-clock-update-time-maybe):
* lisp/org/org-colview.el (org-columns--age-to-minutes):
* lisp/org/org.el (org-get-scheduled-time, org-get-deadline-time)
(org-add-planning-info, org-2ft, org-time-string-to-absolute)
(org-closest-date):
Use org-time-string-to-time instead of doing it by hand with
encode-time.
* lisp/org/org.el (org-current-time): Simplify rounding.
(org-read-date): Avoid extra trip through encode-time.
2019-02-10 20:25:22 -08:00
|
|
|
(setq deadline (apply #'encode-time (car deadline) minute hour
|
|
|
|
(nthcdr 3 deadline)))
|
2004-09-04 13:13:48 +00:00
|
|
|
;; If this time has passed already, add a day.
|
Simplify use of encode-time
Most uses of (apply #'encode-time foo) can now be replaced
with (encode-time foo). Make similar simplifications.
* lisp/calendar/time-date.el (date-to-time):
* lisp/calendar/timeclock.el (timeclock-when-to-leave)
(timeclock-day-base, timeclock-generate-report):
* lisp/emacs-lisp/timer.el (timer-set-idle-time):
* lisp/eshell/esh-util.el (eshell-parse-ange-ls):
* lisp/gnus/gnus-art.el (article-make-date-line):
* lisp/gnus/gnus-delay.el (gnus-delay-article)
(gnus-delay-send-queue):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event--decode-datefield):
* lisp/gnus/gnus-logic.el (gnus-advanced-date):
* lisp/gnus/message.el (message-make-expires-date):
* lisp/gnus/nndiary.el (nndiary-compute-reminders):
* lisp/mail/ietf-drums.el (ietf-drums-parse-date):
* lisp/net/tramp-adb.el (tramp-adb-ls-output-time-less-p):
* lisp/org/org-agenda.el (org-agenda-get-timestamps)
(org-agenda-get-progress, org-agenda-show-clocking-issues):
* lisp/org/org-capture.el (org-capture-set-target-location):
* lisp/org/org-clock.el (org-clock-get-sum-start, org-clock-sum)
(org-clocktable-steps):
* lisp/org/org-colview.el (org-colview-construct-allowed-dates)
* lisp/org/org-macro.el (org-macro--vc-modified-time):
* lisp/org/org-table.el (org-table-eval-formula):
* lisp/org/org.el (org-current-time, org-store-link)
(org-time-today, org-read-date, org-read-date-display)
(org-display-custom-time, org-time-string-to-time)
(org-timestamp-change, org-timestamp--to-internal-time):
* lisp/url/url-dav.el (url-dav-process-date-property):
* lisp/vc/vc-cvs.el (vc-cvs-annotate-current-time)
(vc-cvs-parse-entry):
Simplify use of encode-time.
* lisp/org/org-clock.el (org-clock-get-clocked-time):
(org-clock-resolve, org-resolve-clocks, org_clock_out)
(org-clock-update-time-maybe):
Avoid some rounding problems with encode-time and float-time.
* lisp/org/org-clock.el (org-clock-in, org-clock-update-time-maybe):
* lisp/org/org-colview.el (org-columns--age-to-minutes):
* lisp/org/org.el (org-get-scheduled-time, org-get-deadline-time)
(org-add-planning-info, org-2ft, org-time-string-to-absolute)
(org-closest-date):
Use org-time-string-to-time instead of doing it by hand with
encode-time.
* lisp/org/org.el (org-current-time): Simplify rounding.
(org-read-date): Avoid extra trip through encode-time.
2019-02-10 20:25:22 -08:00
|
|
|
(when (time-less-p deadline nil)
|
|
|
|
(setq deadline (time-add 86400 deadline))) ; 86400 secs/day
|
2004-09-04 13:13:48 +00:00
|
|
|
;; Convert seconds to date header.
|
Simplify use of encode-time
Most uses of (apply #'encode-time foo) can now be replaced
with (encode-time foo). Make similar simplifications.
* lisp/calendar/time-date.el (date-to-time):
* lisp/calendar/timeclock.el (timeclock-when-to-leave)
(timeclock-day-base, timeclock-generate-report):
* lisp/emacs-lisp/timer.el (timer-set-idle-time):
* lisp/eshell/esh-util.el (eshell-parse-ange-ls):
* lisp/gnus/gnus-art.el (article-make-date-line):
* lisp/gnus/gnus-delay.el (gnus-delay-article)
(gnus-delay-send-queue):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event--decode-datefield):
* lisp/gnus/gnus-logic.el (gnus-advanced-date):
* lisp/gnus/message.el (message-make-expires-date):
* lisp/gnus/nndiary.el (nndiary-compute-reminders):
* lisp/mail/ietf-drums.el (ietf-drums-parse-date):
* lisp/net/tramp-adb.el (tramp-adb-ls-output-time-less-p):
* lisp/org/org-agenda.el (org-agenda-get-timestamps)
(org-agenda-get-progress, org-agenda-show-clocking-issues):
* lisp/org/org-capture.el (org-capture-set-target-location):
* lisp/org/org-clock.el (org-clock-get-sum-start, org-clock-sum)
(org-clocktable-steps):
* lisp/org/org-colview.el (org-colview-construct-allowed-dates)
* lisp/org/org-macro.el (org-macro--vc-modified-time):
* lisp/org/org-table.el (org-table-eval-formula):
* lisp/org/org.el (org-current-time, org-store-link)
(org-time-today, org-read-date, org-read-date-display)
(org-display-custom-time, org-time-string-to-time)
(org-timestamp-change, org-timestamp--to-internal-time):
* lisp/url/url-dav.el (url-dav-process-date-property):
* lisp/vc/vc-cvs.el (vc-cvs-annotate-current-time)
(vc-cvs-parse-entry):
Simplify use of encode-time.
* lisp/org/org-clock.el (org-clock-get-clocked-time):
(org-clock-resolve, org-resolve-clocks, org_clock_out)
(org-clock-update-time-maybe):
Avoid some rounding problems with encode-time and float-time.
* lisp/org/org-clock.el (org-clock-in, org-clock-update-time-maybe):
* lisp/org/org-colview.el (org-columns--age-to-minutes):
* lisp/org/org.el (org-get-scheduled-time, org-get-deadline-time)
(org-add-planning-info, org-2ft, org-time-string-to-absolute)
(org-closest-date):
Use org-time-string-to-time instead of doing it by hand with
encode-time.
* lisp/org/org.el (org-current-time): Simplify rounding.
(org-read-date): Avoid extra trip through encode-time.
2019-02-10 20:25:22 -08:00
|
|
|
(setq deadline (message-make-date deadline)))
|
2004-09-04 13:13:48 +00:00
|
|
|
((string-match "\\([0-9]+\\)\\s-*\\([mhdwMY]\\)" delay)
|
|
|
|
(setq num (match-string 1 delay))
|
|
|
|
(setq unit (match-string 2 delay))
|
|
|
|
;; Start from seconds, then multiply into needed units.
|
|
|
|
(setq num (string-to-number num))
|
|
|
|
(cond ((string= unit "Y")
|
|
|
|
(setq delay (* num 60 60 24 365)))
|
|
|
|
((string= unit "M")
|
|
|
|
(setq delay (* num 60 60 24 30)))
|
|
|
|
((string= unit "w")
|
|
|
|
(setq delay (* num 60 60 24 7)))
|
|
|
|
((string= unit "d")
|
|
|
|
(setq delay (* num 60 60 24)))
|
|
|
|
((string= unit "h")
|
|
|
|
(setq delay (* num 60 60)))
|
|
|
|
(t
|
|
|
|
(setq delay (* num 60))))
|
Simplify use of encode-time
Most uses of (apply #'encode-time foo) can now be replaced
with (encode-time foo). Make similar simplifications.
* lisp/calendar/time-date.el (date-to-time):
* lisp/calendar/timeclock.el (timeclock-when-to-leave)
(timeclock-day-base, timeclock-generate-report):
* lisp/emacs-lisp/timer.el (timer-set-idle-time):
* lisp/eshell/esh-util.el (eshell-parse-ange-ls):
* lisp/gnus/gnus-art.el (article-make-date-line):
* lisp/gnus/gnus-delay.el (gnus-delay-article)
(gnus-delay-send-queue):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event--decode-datefield):
* lisp/gnus/gnus-logic.el (gnus-advanced-date):
* lisp/gnus/message.el (message-make-expires-date):
* lisp/gnus/nndiary.el (nndiary-compute-reminders):
* lisp/mail/ietf-drums.el (ietf-drums-parse-date):
* lisp/net/tramp-adb.el (tramp-adb-ls-output-time-less-p):
* lisp/org/org-agenda.el (org-agenda-get-timestamps)
(org-agenda-get-progress, org-agenda-show-clocking-issues):
* lisp/org/org-capture.el (org-capture-set-target-location):
* lisp/org/org-clock.el (org-clock-get-sum-start, org-clock-sum)
(org-clocktable-steps):
* lisp/org/org-colview.el (org-colview-construct-allowed-dates)
* lisp/org/org-macro.el (org-macro--vc-modified-time):
* lisp/org/org-table.el (org-table-eval-formula):
* lisp/org/org.el (org-current-time, org-store-link)
(org-time-today, org-read-date, org-read-date-display)
(org-display-custom-time, org-time-string-to-time)
(org-timestamp-change, org-timestamp--to-internal-time):
* lisp/url/url-dav.el (url-dav-process-date-property):
* lisp/vc/vc-cvs.el (vc-cvs-annotate-current-time)
(vc-cvs-parse-entry):
Simplify use of encode-time.
* lisp/org/org-clock.el (org-clock-get-clocked-time):
(org-clock-resolve, org-resolve-clocks, org_clock_out)
(org-clock-update-time-maybe):
Avoid some rounding problems with encode-time and float-time.
* lisp/org/org-clock.el (org-clock-in, org-clock-update-time-maybe):
* lisp/org/org-colview.el (org-columns--age-to-minutes):
* lisp/org/org.el (org-get-scheduled-time, org-get-deadline-time)
(org-add-planning-info, org-2ft, org-time-string-to-absolute)
(org-closest-date):
Use org-time-string-to-time instead of doing it by hand with
encode-time.
* lisp/org/org.el (org-current-time): Simplify rounding.
(org-read-date): Avoid extra trip through encode-time.
2019-02-10 20:25:22 -08:00
|
|
|
(setq deadline (message-make-date (time-add nil delay))))
|
2004-09-04 13:13:48 +00:00
|
|
|
(t (error "Malformed delay `%s'" delay)))
|
|
|
|
(message-add-header (format "%s: %s" gnus-delay-header deadline)))
|
|
|
|
(set-buffer-modified-p t)
|
|
|
|
;; If group does not exist, create it.
|
2010-10-18 22:09:28 +00:00
|
|
|
(gnus-agent-queue-setup gnus-delay-group)
|
2004-09-04 13:13:48 +00:00
|
|
|
(message-disassociate-draft)
|
|
|
|
(nndraft-request-associate-buffer gnus-delay-group)
|
|
|
|
(save-buffer 0)
|
|
|
|
(kill-buffer (current-buffer))
|
|
|
|
(message-do-actions message-postpone-actions))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun gnus-delay-send-queue ()
|
|
|
|
"Send all the delayed messages that are due now."
|
|
|
|
(interactive)
|
|
|
|
(save-excursion
|
|
|
|
(let* ((group (format "nndraft:%s" gnus-delay-group))
|
|
|
|
(message-send-hook (copy-sequence message-send-hook))
|
|
|
|
articles
|
|
|
|
article deadline)
|
2007-10-28 09:18:39 +00:00
|
|
|
(when (gnus-group-entry group)
|
2004-09-04 13:13:48 +00:00
|
|
|
(gnus-activate-group group)
|
|
|
|
(add-hook 'message-send-hook
|
2014-10-04 23:55:04 +00:00
|
|
|
(lambda () (message-remove-header gnus-delay-header)) t)
|
2004-09-04 13:13:48 +00:00
|
|
|
(setq articles (nndraft-articles))
|
|
|
|
(while (setq article (pop articles))
|
|
|
|
(gnus-request-head article group)
|
|
|
|
(set-buffer nntp-server-buffer)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(if (re-search-forward
|
|
|
|
(concat "^" (regexp-quote gnus-delay-header) ":\\s-+")
|
|
|
|
nil t)
|
|
|
|
(progn
|
|
|
|
(setq deadline (nnheader-header-value))
|
Simplify use of encode-time
Most uses of (apply #'encode-time foo) can now be replaced
with (encode-time foo). Make similar simplifications.
* lisp/calendar/time-date.el (date-to-time):
* lisp/calendar/timeclock.el (timeclock-when-to-leave)
(timeclock-day-base, timeclock-generate-report):
* lisp/emacs-lisp/timer.el (timer-set-idle-time):
* lisp/eshell/esh-util.el (eshell-parse-ange-ls):
* lisp/gnus/gnus-art.el (article-make-date-line):
* lisp/gnus/gnus-delay.el (gnus-delay-article)
(gnus-delay-send-queue):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event--decode-datefield):
* lisp/gnus/gnus-logic.el (gnus-advanced-date):
* lisp/gnus/message.el (message-make-expires-date):
* lisp/gnus/nndiary.el (nndiary-compute-reminders):
* lisp/mail/ietf-drums.el (ietf-drums-parse-date):
* lisp/net/tramp-adb.el (tramp-adb-ls-output-time-less-p):
* lisp/org/org-agenda.el (org-agenda-get-timestamps)
(org-agenda-get-progress, org-agenda-show-clocking-issues):
* lisp/org/org-capture.el (org-capture-set-target-location):
* lisp/org/org-clock.el (org-clock-get-sum-start, org-clock-sum)
(org-clocktable-steps):
* lisp/org/org-colview.el (org-colview-construct-allowed-dates)
* lisp/org/org-macro.el (org-macro--vc-modified-time):
* lisp/org/org-table.el (org-table-eval-formula):
* lisp/org/org.el (org-current-time, org-store-link)
(org-time-today, org-read-date, org-read-date-display)
(org-display-custom-time, org-time-string-to-time)
(org-timestamp-change, org-timestamp--to-internal-time):
* lisp/url/url-dav.el (url-dav-process-date-property):
* lisp/vc/vc-cvs.el (vc-cvs-annotate-current-time)
(vc-cvs-parse-entry):
Simplify use of encode-time.
* lisp/org/org-clock.el (org-clock-get-clocked-time):
(org-clock-resolve, org-resolve-clocks, org_clock_out)
(org-clock-update-time-maybe):
Avoid some rounding problems with encode-time and float-time.
* lisp/org/org-clock.el (org-clock-in, org-clock-update-time-maybe):
* lisp/org/org-colview.el (org-columns--age-to-minutes):
* lisp/org/org.el (org-get-scheduled-time, org-get-deadline-time)
(org-add-planning-info, org-2ft, org-time-string-to-absolute)
(org-closest-date):
Use org-time-string-to-time instead of doing it by hand with
encode-time.
* lisp/org/org.el (org-current-time): Simplify rounding.
(org-read-date): Avoid extra trip through encode-time.
2019-02-10 20:25:22 -08:00
|
|
|
(setq deadline (encode-time (parse-time-string deadline)))
|
2019-02-09 19:22:53 -08:00
|
|
|
(unless (time-less-p nil deadline)
|
2004-09-04 13:13:48 +00:00
|
|
|
(message "Sending delayed article %d" article)
|
|
|
|
(gnus-draft-send article group)
|
|
|
|
(message "Sending delayed article %d...done" article)))
|
|
|
|
(message "Delay header missing for article %d" article)))))))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun gnus-delay-initialize (&optional no-keymap no-check)
|
|
|
|
"Initialize the gnus-delay package.
|
|
|
|
This sets up a key binding in `message-mode' to delay a message.
|
|
|
|
This tells Gnus to look for delayed messages after getting new news.
|
|
|
|
|
|
|
|
The optional arg NO-KEYMAP is ignored.
|
|
|
|
Checking delayed messages is skipped if optional arg NO-CHECK is non-nil."
|
|
|
|
(unless no-check
|
|
|
|
(add-hook 'gnus-get-new-news-hook 'gnus-delay-send-queue)))
|
|
|
|
|
|
|
|
(provide 'gnus-delay)
|
|
|
|
|
|
|
|
;; Local Variables:
|
2013-03-05 09:13:01 -08:00
|
|
|
;; coding: utf-8
|
2004-09-04 13:13:48 +00:00
|
|
|
;; End:
|
|
|
|
|
|
|
|
;;; gnus-delay.el ends here
|