Function: pop3-make-date

pop3-make-date is a byte-compiled function defined in pop3.el.gz.

Signature

(pop3-make-date &optional NOW)

Documentation

Make a valid date header.

If NOW, use that time instead.

Source Code

;; Defined in /usr/src/emacs/lisp/net/pop3.el.gz
;; Copied from message-make-date.
(defun pop3-make-date (&optional now)
  "Make a valid date header.
If NOW, use that time instead."
  ;; The month name of the %b spec is locale-specific.  Pfff.
  (let ((system-time-locale "C"))
    (format-time-string "%d %b %Y %T %z" now)))