Revoke previous bogus `buffer-size' changes.
[gnus] / lisp / pop3.el
1 ;;; pop3.el --- Post Office Protocol (RFC 1460) interface
2
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4 ;;        Free Software Foundation, Inc.
5
6 ;; Author: Richard L. Pieri <ratinox@peorth.gweep.net>
7 ;; Maintainer: FSF
8 ;; Keywords: mail
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;; Most of the standard Post Office Protocol version 3 (RFC 1460) commands
30 ;; are implemented.  The LIST command has not been implemented due to lack
31 ;; of actual usefulness.
32 ;; The optional POP3 command TOP has not been implemented.
33
34 ;; This program was inspired by Kyle E. Jones's vm-pop program.
35
36 ;;; Code:
37
38 (require 'mail-utils)
39
40 (defvar pop3-maildrop (or (user-login-name) (getenv "LOGNAME") (getenv "USER") nil)
41   "*POP3 maildrop.")
42 (defvar pop3-mailhost (or (getenv "MAILHOST") nil)
43   "*POP3 mailhost.")
44 (defvar pop3-port 110
45   "*POP3 port.")
46
47 (defvar pop3-password-required t
48   "*Non-nil if a password is required when connecting to POP server.")
49 (defvar pop3-password nil
50   "*Password to use when connecting to POP server.")
51
52 (defvar pop3-authentication-scheme 'pass
53   "*POP3 authentication scheme.
54 Defaults to 'pass, for the standard USER/PASS authentication.  Other valid
55 values are 'apop.")
56
57 (defvar pop3-timestamp nil
58   "Timestamp returned when initially connected to the POP server.
59 Used for APOP authentication.")
60
61 (defvar pop3-read-point nil)
62 (defvar pop3-debug nil)
63
64 (defun pop3-movemail (&optional crashbox)
65   "Transfer contents of a maildrop to the specified CRASHBOX."
66   (or crashbox (setq crashbox (expand-file-name "~/.crashbox")))
67   (let* ((process (pop3-open-server pop3-mailhost pop3-port))
68          (crashbuf (get-buffer-create " *pop3-retr*"))
69          (n 1)
70          message-count
71          (pop3-password pop3-password)
72          )
73     ;; for debugging only
74     (if pop3-debug (switch-to-buffer (process-buffer process)))
75     ;; query for password
76     (if (and pop3-password-required (not pop3-password))
77         (setq pop3-password
78               (read-passwd (format "Password for %s: " pop3-maildrop))))
79     (cond ((equal 'apop pop3-authentication-scheme)
80            (pop3-apop process pop3-maildrop))
81           ((equal 'pass pop3-authentication-scheme)
82            (pop3-user process pop3-maildrop)
83            (pop3-pass process))
84           (t (error "Invalid POP3 authentication scheme")))
85     (setq message-count (car (pop3-stat process)))
86     (unwind-protect
87         (while (<= n message-count)
88           (message (format "Retrieving message %d of %d from %s..."
89                            n message-count pop3-mailhost))
90           (pop3-retr process n crashbuf)
91           (save-excursion
92             (set-buffer crashbuf)
93             (let ((coding-system-for-write 'binary))
94               (write-region (point-min) (point-max) crashbox t 'nomesg))
95             (set-buffer (process-buffer process))
96             (while (> (buffer-size) 5000)
97               (goto-char (point-min))
98               (forward-line 50)
99               (delete-region (point-min) (point))))
100           (pop3-dele process n)
101           (setq n (+ 1 n))
102           (if pop3-debug (sit-for 1) (sit-for 0.1))
103           )
104       (pop3-quit process))
105     (kill-buffer crashbuf)
106     )
107   t)
108
109 (defun pop3-get-message-count ()
110   "Return the number of messages in the maildrop."
111   (let* ((process (pop3-open-server pop3-mailhost pop3-port))
112          message-count
113          (pop3-password pop3-password)
114          )
115     ;; for debugging only
116     (if pop3-debug (switch-to-buffer (process-buffer process)))
117     ;; query for password
118     (if (and pop3-password-required (not pop3-password))
119         (setq pop3-password
120               (read-passwd (format "Password for %s: " pop3-maildrop))))
121     (cond ((equal 'apop pop3-authentication-scheme)
122            (pop3-apop process pop3-maildrop))
123           ((equal 'pass pop3-authentication-scheme)
124            (pop3-user process pop3-maildrop)
125            (pop3-pass process))
126           (t (error "Invalid POP3 authentication scheme")))
127     (setq message-count (car (pop3-stat process)))
128     (pop3-quit process)
129     message-count))
130
131 (defun pop3-open-server (mailhost port)
132   "Open TCP connection to MAILHOST on PORT.
133 Returns the process associated with the connection."
134   (let ((coding-system-for-read 'binary)
135         (coding-system-for-write 'binary)
136         process)
137     (save-excursion
138       (set-buffer (get-buffer-create (concat " trace of POP session to "
139                                              mailhost)))
140       (erase-buffer)
141       (setq pop3-read-point (point-min))
142       (setq process (open-network-stream "POP" (current-buffer) mailhost port))
143       (let ((response (pop3-read-response process t)))
144         (setq pop3-timestamp
145               (substring response (or (string-match "<" response) 0)
146                          (+ 1 (or (string-match ">" response) -1)))))
147       process)))
148
149 ;; Support functions
150
151 (defun pop3-process-filter (process output)
152   (save-excursion
153     (set-buffer (process-buffer process))
154     (goto-char (point-max))
155     (insert output)))
156
157 (defun pop3-send-command (process command)
158     (set-buffer (process-buffer process))
159     (goto-char (point-max))
160 ;;    (if (= (aref command 0) ?P)
161 ;;      (insert "PASS <omitted>\r\n")
162 ;;      (insert command "\r\n"))
163     (setq pop3-read-point (point))
164     (goto-char (point-max))
165     (process-send-string process (concat command "\r\n"))
166     )
167
168 (defun pop3-read-response (process &optional return)
169   "Read the response from the server.
170 Return the response string if optional second argument is non-nil."
171   (let ((case-fold-search nil)
172         match-end)
173     (save-excursion
174       (set-buffer (process-buffer process))
175       (goto-char pop3-read-point)
176       (while (not (search-forward "\r\n" nil t))
177         (accept-process-output process 0 500)
178         (goto-char pop3-read-point))
179       (setq match-end (point))
180       (goto-char pop3-read-point)
181       (if (looking-at "-ERR")
182           (error (buffer-substring (point) (- match-end 2)))
183         (if (not (looking-at "+OK"))
184             (progn (setq pop3-read-point match-end) nil)
185           (setq pop3-read-point match-end)
186           (if return
187               (buffer-substring (point) match-end)
188             t)
189           )))))
190
191 (defun pop3-clean-region (start end)
192   (setq end (set-marker (make-marker) end))
193   (save-excursion
194     (goto-char start)
195     (while (and (< (point) end) (search-forward "\r\n" end t))
196       (replace-match "\n" t t))
197     (goto-char start)
198     (while (and (< (point) end) (re-search-forward "^\\." end t))
199       (replace-match "" t t)
200       (forward-char)))
201   (set-marker end nil))
202
203 (eval-when-compile (defvar parse-time-months))
204
205 ;; Copied from message-make-date.
206 (defun pop3-make-date (&optional now)
207   "Make a valid date header.
208 If NOW, use that time instead."
209   (require 'parse-time)
210   (let* ((now (or now (current-time)))
211          (zone (nth 8 (decode-time now)))
212          (sign "+"))
213     (when (< zone 0)
214       (setq sign "-")
215       (setq zone (- zone)))
216     (concat
217      (format-time-string "%d" now)
218      ;; The month name of the %b spec is locale-specific.  Pfff.
219      (format " %s "
220              (capitalize (car (rassoc (nth 4 (decode-time now))
221                                       parse-time-months))))
222      (format-time-string "%Y %H:%M:%S " now)
223      ;; We do all of this because XEmacs doesn't have the %z spec.
224      (format "%s%02d%02d" sign (/ zone 3600) (/ (% zone 3600) 60)))))
225
226 (defun pop3-munge-message-separator (start end)
227   "Check to see if a message separator exists.  If not, generate one."
228   (save-excursion
229     (save-restriction
230       (narrow-to-region start end)
231       (goto-char (point-min))
232       (if (not (or (looking-at "From .?") ; Unix mail
233                    (looking-at "\001\001\001\001\n") ; MMDF
234                    (looking-at "BABYL OPTIONS:") ; Babyl
235                    ))
236           (let* ((from (mail-strip-quoted-names (mail-fetch-field "From")))
237                  (tdate (mail-fetch-field "Date"))
238                  (date (split-string (or (and tdate
239                                               (not (string= "" tdate))
240                                               tdate)
241                                          (pop3-make-date))
242                                      " "))
243                  (From_))
244             ;; sample date formats I have seen
245             ;; Date: Tue, 9 Jul 1996 09:04:21 -0400 (EDT)
246             ;; Date: 08 Jul 1996 23:22:24 -0400
247             ;; should be
248             ;; Tue Jul 9 09:04:21 1996
249             (setq date
250                   (cond ((not date)
251                          "Tue Jan 1 00:00:0 1900")
252                         ((string-match "[A-Z]" (nth 0 date))
253                          (format "%s %s %s %s %s"
254                                  (nth 0 date) (nth 2 date) (nth 1 date)
255                                  (nth 4 date) (nth 3 date)))
256                         (t
257                          ;; this really needs to be better but I don't feel
258                          ;; like writing a date to day converter.
259                          (format "Sun %s %s %s %s"
260                                  (nth 1 date) (nth 0 date)
261                                  (nth 3 date) (nth 2 date)))
262                         ))
263             (setq From_ (format "\nFrom %s  %s\n" from date))
264             (while (string-match "," From_)
265               (setq From_ (concat (substring From_ 0 (match-beginning 0))
266                                   (substring From_ (match-end 0)))))
267             (goto-char (point-min))
268             (insert From_)
269             (if (search-forward "\n\n" nil t)
270                 nil
271               (goto-char (point-max))
272               (insert "\n"))
273             (narrow-to-region (point) (point-max))
274             (let ((size (- (point-max) (point-min))))
275               (goto-char (point-min))
276               (widen)
277               (forward-line -1)
278               (insert (format "Content-Length: %s\n" size)))
279             )))))
280
281 ;; The Command Set
282
283 ;; AUTHORIZATION STATE
284
285 (defun pop3-user (process user)
286   "Send USER information to POP3 server."
287   (pop3-send-command process (format "USER %s" user))
288   (let ((response (pop3-read-response process t)))
289     (if (not (and response (string-match "+OK" response)))
290         (error (format "USER %s not valid" user)))))
291
292 (defun pop3-pass (process)
293   "Send authentication information to the server."
294   (pop3-send-command process (format "PASS %s" pop3-password))
295   (let ((response (pop3-read-response process t)))
296     (if (not (and response (string-match "+OK" response)))
297         (pop3-quit process))))
298
299 (defun pop3-apop (process user)
300   "Send alternate authentication information to the server."
301   (let ((pass pop3-password))
302     (if (and pop3-password-required (not pass))
303         (setq pass
304               (read-passwd (format "Password for %s: " pop3-maildrop))))
305     (if pass
306         (let ((hash (pop3-md5 (concat pop3-timestamp pass))))
307           (pop3-send-command process (format "APOP %s %s" user hash))
308           (let ((response (pop3-read-response process t)))
309             (if (not (and response (string-match "+OK" response)))
310                 (pop3-quit process)))))
311     ))
312
313 ;; TRANSACTION STATE
314
315 (eval-and-compile
316   (if (fboundp 'md5)
317       (defalias 'pop3-md5 'md5)
318     (defvar pop3-md5-program "md5"
319       "*Program to encode its input in MD5.")
320
321     (defun pop3-md5 (string)
322       (with-temp-buffer
323         (insert string)
324         (call-process-region (point-min) (point-max)
325                              pop3-md5-program
326                              t (current-buffer) nil)
327         ;; The meaningful output is the first 32 characters.
328         ;; Don't return the newline that follows them!
329         (buffer-substring (point-min) (+ 32 (point-min)))))))
330
331 (defun pop3-stat (process)
332   "Return the number of messages in the maildrop and the maildrop's size."
333   (pop3-send-command process "STAT")
334   (let ((response (pop3-read-response process t)))
335     (list (string-to-int (nth 1 (split-string response " ")))
336           (string-to-int (nth 2 (split-string response " "))))
337     ))
338
339 (defun pop3-list (process &optional msg)
340   "Scan listing of available messages.
341 This function currently does nothing.")
342
343 (defun pop3-retr (process msg crashbuf)
344   "Retrieve message-id MSG to buffer CRASHBUF."
345   (pop3-send-command process (format "RETR %s" msg))
346   (pop3-read-response process)
347   (let ((start pop3-read-point) end)
348     (save-excursion
349       (set-buffer (process-buffer process))
350       (while (not (re-search-forward "^\\.\r\n" nil t))
351         (accept-process-output process 0 500)
352         ;; bill@att.com ... to save wear and tear on the heap
353         ;; uncommented because the condensed version below is a problem for
354         ;; some.
355         (if (> (buffer-size)  20000) (sleep-for 1))
356         (if (> (buffer-size)  50000) (sleep-for 1))
357         (if (> (buffer-size) 100000) (sleep-for 1))
358         (if (> (buffer-size) 200000) (sleep-for 1))
359         (if (> (buffer-size) 500000) (sleep-for 1))
360         ;; bill@att.com
361         ;; condensed into:
362         ;; (sometimes causes problems for really large messages.)
363 ;       (if (> (buffer-size) 20000) (sleep-for (/ (buffer-size) 20000)))
364         (goto-char start))
365       (setq pop3-read-point (point-marker))
366 ;; this code does not seem to work for some POP servers...
367 ;; and I cannot figure out why not.
368 ;      (goto-char (match-beginning 0))
369 ;      (backward-char 2)
370 ;      (if (not (looking-at "\r\n"))
371 ;         (insert "\r\n"))
372 ;      (re-search-forward "\\.\r\n")
373       (goto-char (match-beginning 0))
374       (setq end (point-marker))
375       (pop3-clean-region start end)
376       (pop3-munge-message-separator start end)
377       (save-excursion
378         (set-buffer crashbuf)
379         (erase-buffer))
380       (copy-to-buffer crashbuf start end)
381       (delete-region start end)
382       )))
383
384 (defun pop3-dele (process msg)
385   "Mark message-id MSG as deleted."
386   (pop3-send-command process (format "DELE %s" msg))
387   (pop3-read-response process))
388
389 (defun pop3-noop (process msg)
390   "No-operation."
391   (pop3-send-command process "NOOP")
392   (pop3-read-response process))
393
394 (defun pop3-last (process)
395   "Return highest accessed message-id number for the session."
396   (pop3-send-command process "LAST")
397   (let ((response (pop3-read-response process t)))
398     (string-to-int (nth 1 (split-string response " ")))
399     ))
400
401 (defun pop3-rset (process)
402   "Remove all delete marks from current maildrop."
403   (pop3-send-command process "RSET")
404   (pop3-read-response process))
405
406 ;; UPDATE
407
408 (defun pop3-quit (process)
409   "Close connection to POP3 server.
410 Tell server to remove all messages marked as deleted, unlock the maildrop,
411 and close the connection."
412   (pop3-send-command process "QUIT")
413   (pop3-read-response process t)
414   (if process
415       (save-excursion
416         (set-buffer (process-buffer process))
417         (goto-char (point-max))
418         (delete-process process))))
419 \f
420 ;; Summary of POP3 (Post Office Protocol version 3) commands and responses
421
422 ;;; AUTHORIZATION STATE
423
424 ;; Initial TCP connection
425 ;; Arguments: none
426 ;; Restrictions: none
427 ;; Possible responses:
428 ;;  +OK [POP3 server ready]
429
430 ;; USER name
431 ;; Arguments: a server specific user-id (required)
432 ;; Restrictions: authorization state [after unsuccessful USER or PASS
433 ;; Possible responses:
434 ;;  +OK [valid user-id]
435 ;;  -ERR [invalid user-id]
436
437 ;; PASS string
438 ;; Arguments: a server/user-id specific password (required)
439 ;; Restrictions: authorization state, after successful USER
440 ;; Possible responses:
441 ;;  +OK [maildrop locked and ready]
442 ;;  -ERR [invalid password]
443 ;;  -ERR [unable to lock maildrop]
444
445 ;;; TRANSACTION STATE
446
447 ;; STAT
448 ;; Arguments: none
449 ;; Restrictions: transaction state
450 ;; Possible responses:
451 ;;  +OK nn mm [# of messages, size of maildrop]
452
453 ;; LIST [msg]
454 ;; Arguments: a message-id (optional)
455 ;; Restrictions: transaction state; msg must not be deleted
456 ;; Possible responses:
457 ;;  +OK [scan listing follows]
458 ;;  -ERR [no such message]
459
460 ;; RETR msg
461 ;; Arguments: a message-id (required)
462 ;; Restrictions: transaction state; msg must not be deleted
463 ;; Possible responses:
464 ;;  +OK [message contents follow]
465 ;;  -ERR [no such message]
466
467 ;; DELE msg
468 ;; Arguments: a message-id (required)
469 ;; Restrictions: transaction state; msg must not be deleted
470 ;; Possible responses:
471 ;;  +OK [message deleted]
472 ;;  -ERR [no such message]
473
474 ;; NOOP
475 ;; Arguments: none
476 ;; Restrictions: transaction state
477 ;; Possible responses:
478 ;;  +OK
479
480 ;; LAST
481 ;; Arguments: none
482 ;; Restrictions: transaction state
483 ;; Possible responses:
484 ;;  +OK nn [highest numbered message accessed]
485
486 ;; RSET
487 ;; Arguments: none
488 ;; Restrictions: transaction state
489 ;; Possible responses:
490 ;;  +OK [all delete marks removed]
491
492 ;;; UPDATE STATE
493
494 ;; QUIT
495 ;; Arguments: none
496 ;; Restrictions: none
497 ;; Possible responses:
498 ;;  +OK [TCP connection closed]
499
500 (provide 'pop3)
501
502 ;;; pop3.el ends here