1 ;;; webmail.el --- interface of web mail
2 ;; Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
4 ;; Author: Shenghuo Zhu <zsh@cs.rochester.edu>
5 ;; Keywords: hotmail netaddress my-deja netscape
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published
11 ;; by the Free Software Foundation; either version 2, or (at your
12 ;; option) any later version.
14 ;; GNU Emacs is distributed in the hope that it will be useful, but
15 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 ;; General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
26 ;; Note: Now mail.yahoo.com provides POP3 service, the webmail
27 ;; fetching is not going to be supported.
29 ;; Note: You need to have `url' and `w3' installed for this backend to
30 ;; work. `w3' must be 4.0pre46+one-line-cookie patch or standalone
33 ;; Todo: To support more web mail servers.
36 ;; 1. Net@ddress may corrupt `X-Face'.
39 ;; Webmail is an experimental function, which means NO WARRANTY.
43 (eval-when-compile (require 'cl))
56 (require 'url-cookie)))
57 ;; Report failure to find w3 at load time if appropriate.
60 (require 'url-cookie)))
64 (defvar webmail-type-definition
66 ;; Hotmail hate other HTTP user agents and use one line cookie
67 (paranoid agent cookie post)
68 (address . "www.hotmail.com")
69 (open-url "http://www.hotmail.com/")
70 (open-snarf . webmail-hotmail-open)
71 ;; W3 hate redirect POST
73 "http://%s/cgi-bin/dologin?login=%s&passwd=%s&enter=Sign+in&sec=no&curmbox=ACTIVE&_lang=&js=yes&id=2&tw=-10000&beta="
74 webmail-aux user password)
75 ;;(login-snarf . webmail-hotmail-login)
76 ;;(list-url "%s" webmail-aux)
77 (list-snarf . webmail-hotmail-list)
78 (article-snarf . webmail-hotmail-article)
80 "%s&login=%s&f=33792&curmbox=ACTIVE&_lang=&foo=inbox&js=&page=&%s=on&_HMaction=MoveTo&tobox=trAsH&nullbox="
83 (paranoid agent cookie post)
84 (address . "mail.yahoo.com")
85 (open-url "http://mail.yahoo.com/")
86 (open-snarf . webmail-yahoo-open)
87 (login-url;; yahoo will not accept GET
90 ".tries=&.src=ym&.last=&promo=&.intl=&.bypass=&.partner=&.chkP=Y&.done=&login=%s&passwd=%s"
92 (login-snarf . webmail-yahoo-login)
93 (list-url "%s&rb=Inbox&YN=1" webmail-aux)
94 (list-snarf . webmail-yahoo-list)
95 (article-snarf . webmail-yahoo-article)
97 "%s/ym/ShowFolder?YY=52107&inc=50&order=down&sort=date&pos=0&box=Inbox&DEL=Delete&destBox=&Mid=%s&destBox2="
100 (paranoid cookie post)
101 (address . "www.netaddress.com")
102 (open-url "http://www.netaddress.com/")
103 (open-snarf . webmail-netaddress-open)
107 "LoginState=2&SuccessfulLogin=%%2Ftpl&NewServerName=www.netaddress.com&JavaScript=JavaScript1.2&DomainID=4&Domain=usa.net&NA31site=classic.netaddress.com&NA31port=80&UserID=%s&passwd=%s"
109 (login-snarf . webmail-netaddress-login)
111 "http://www.netaddress.com/tpl/Mail/%s/List?FolderID=-4&SortUseCase=True"
113 (list-snarf . webmail-netaddress-list)
114 (article-url "http://www.netaddress.com/")
115 (article-snarf . webmail-netaddress-article)
117 "http://www.netaddress.com/tpl/Message/%s/Move?FolderID=-4&Q=%s&N=&Sort=Date&F=-1"
120 (paranoid cookie post agent)
121 (address . "webmail.netscape.com")
122 (open-url "http://ureg.netscape.com/iiop/UReg2/login/login?U2_LA=en&U2_BACK_FROM_CJ=true&U2_CS=iso-8859-1&U2_ENDURL=http://webmail.netscape.com/tpl/Subscribe/Step1&U2_NEW_ENDURL=http://webmail.netscape.com/tpl/Subscribe/Step1&U2_EXITURL=http://home.netscape.com/&U2_SOURCE=Webmail")
123 (open-snarf . webmail-netscape-open)
126 ("http://ureg.netscape.com/iiop/UReg2/login/loginform")
127 "U2_USERNAME=%s&U2_PASSWORD=%s%s"
128 user password webmail-aux)
129 (login-snarf . webmail-netaddress-login)
131 "http://webmail.netscape.com/tpl/Mail/%s/List?FolderID=-4&SortUseCase=True"
133 (list-snarf . webmail-netaddress-list)
134 (article-url "http://webmail.netscape.com/")
135 (article-snarf . webmail-netscape-article)
137 "http://webmail.netscape.com/tpl/Message/%s/Move?FolderID=-4&Q=%s&N=&Sort=Date&F=-1"
140 (paranoid cookie post)
141 (address . "www.my-deja.com")
142 ;;(open-snarf . webmail-my-deja-open)
145 ("http://mydeja.google.com/cgi-bin/deja/maillogin.py")
146 "userid=%s&password=%s"
148 (list-snarf . webmail-my-deja-list)
149 (article-snarf . webmail-my-deja-article)
150 (trash-url webmail-aux id))))
152 (defvar webmail-variables
153 '(address article-snarf article-url list-snarf list-url
154 login-url login-snarf open-url open-snarf site articles
155 post-process paranoid trash-url))
157 (defconst webmail-version "webmail 1.0")
159 (defvar webmail-newmail-only nil
160 "Only fetch new mails.")
162 (defvar webmail-move-to-trash-can t
163 "Move mail to trash can after fetch it.")
165 ;;; Internal variables
167 (defvar webmail-address nil)
168 (defvar webmail-paranoid nil)
169 (defvar webmail-aux nil)
170 (defvar webmail-session nil)
171 (defvar webmail-article-snarf nil)
172 (defvar webmail-article-url nil)
173 (defvar webmail-list-snarf nil)
174 (defvar webmail-list-url nil)
175 (defvar webmail-login-url nil)
176 (defvar webmail-login-snarf nil)
177 (defvar webmail-open-snarf nil)
178 (defvar webmail-open-url nil)
179 (defvar webmail-trash-url nil)
180 (defvar webmail-articles nil)
181 (defvar webmail-post-process nil)
183 (defvar webmail-buffer nil)
184 (defvar webmail-buffer-list nil)
186 (defvar webmail-type nil)
188 (defvar webmail-error-function nil)
190 (defvar webmail-debug-file "~/.emacs-webmail-debug")
192 ;;; Interface functions
194 (defun webmail-debug (str)
196 (insert "\n---------------- A bug at " str " ------------------\n")
197 (mapcar #'(lambda (sym)
199 (pp `(setq ,sym ',(eval sym)) (current-buffer))))
200 '(webmail-type user))
201 (insert "---------------- webmail buffer ------------------\n\n")
202 (insert-buffer-substring webmail-buffer)
203 (insert "\n---------------- end of buffer ------------------\n\n")
204 (append-to-file (point-min) (point-max) webmail-debug-file)))
206 (defun webmail-error (str)
207 (if webmail-error-function
208 (funcall webmail-error-function str))
209 (message "%s HTML has changed or your w3 package is too old.(%s)"
211 (error "%s HTML has changed or your w3 package is too old.(%s)"
214 (defun webmail-setdefault (type)
215 (let ((type-def (cdr (assq type webmail-type-definition)))
216 (vars webmail-variables)
218 (setq webmail-type type)
220 (if (setq pair (assq var type-def))
221 (set (intern (concat "webmail-" (symbol-name var))) (cdr pair))
222 (set (intern (concat "webmail-" (symbol-name var))) nil)))))
224 (defun webmail-eval (expr)
227 (cons (webmail-eval (car expr)) (webmail-eval (cdr expr))))
233 (defun webmail-url (xurl)
234 (mm-with-unibyte-current-buffer
236 ((eq (car xurl) 'content)
238 (mm-url-fetch-simple (if (stringp (car xurl))
240 (apply 'format (webmail-eval (car xurl))))
241 (apply 'format (webmail-eval (cdr xurl)))))
242 ((eq (car xurl) 'post)
244 (mm-url-fetch-form (car xurl) (webmail-eval (cdr xurl))))
246 (mm-url-insert (apply 'format (webmail-eval xurl)))))))
248 (defun webmail-init ()
249 "Initialize buffers and such."
250 (if (gnus-buffer-live-p webmail-buffer)
251 (set-buffer webmail-buffer)
253 (nnheader-set-temp-buffer " *webmail*"))
254 (mm-disable-multibyte)))
256 (defvar url-package-name)
257 (defvar url-package-version)
258 (defvar url-cookie-multiple-line)
259 (defvar url-confirmation-func)
261 ;; Hack W3 POST redirect. See `url-parse-mime-headers'.
263 ;; Netscape uses "GET" as redirect method when orignal method is POST
264 ;; and status is 302, .i.e no security risks by default without
267 ;; Some web servers (at least Apache used by yahoo) return status 302
268 ;; instead of 303, though they mean 303.
270 (defun webmail-url-confirmation-func (prompt)
272 ((equal prompt (concat "Honor redirection with non-GET method "
273 "(possible security risks)? "))
275 ((equal prompt "Continue (with method of GET)? ")
279 (defun webmail-refresh-redirect ()
280 "Redirect refresh url in META."
281 (goto-char (point-min))
282 (while (re-search-forward
283 "<meta[ \t\r\n]*http-equiv=\"Refresh\"[^>]*URL=\\([^\"]+\\)\""
285 (let ((url (match-string 1)))
287 (mm-with-unibyte-current-buffer
288 (mm-url-insert url)))
289 (goto-char (point-min))))
291 (defun webmail-fetch (file subtype user password)
293 (webmail-setdefault subtype)
294 (let ((url-package-name (if (memq 'agent webmail-paranoid)
297 (url-package-version (if (memq 'agent webmail-paranoid)
299 url-package-version))
300 (url-cookie-multiple-line (if (memq 'cookie webmail-paranoid)
302 url-cookie-multiple-line))
303 (url-confirmation-func (if (memq 'post webmail-paranoid)
304 'webmail-url-confirmation-func
305 url-confirmation-func))
306 (url-http-silence-on-insecure-redirection t)
307 url-cookie-storage url-cookie-secure-storage
308 url-cookie-confirmation
311 (setq webmail-articles nil)
312 (when webmail-open-url
314 (webmail-url webmail-open-url))
315 (if webmail-open-snarf (funcall webmail-open-snarf))
316 (when webmail-login-url
318 (webmail-url webmail-login-url))
319 (if webmail-login-snarf
320 (funcall webmail-login-snarf))
321 (when webmail-list-url
323 (webmail-url webmail-list-url))
324 (if webmail-list-snarf
325 (funcall webmail-list-snarf))
326 (while (setq item (pop webmail-articles))
327 (message "Fetching mail #%d..." (setq n (1+ n)))
329 (mm-with-unibyte-current-buffer
330 (mm-url-insert (cdr item)))
332 (if webmail-article-snarf
333 (funcall webmail-article-snarf file id))
334 (when (and webmail-trash-url webmail-move-to-trash-can)
335 (message "Move mail #%d to trash can..." n)
338 (webmail-url webmail-trash-url)
340 (while (setq buf (pop webmail-buffer-list))
344 (while (setq buf (pop webmail-buffer-list))
347 (if webmail-post-process
348 (funcall webmail-post-process))))
350 (defun webmail-encode-8bit ()
351 (goto-char (point-min))
352 (skip-chars-forward "^\200-\377")
354 (insert (format "&%d;" (mm-char-int (char-after))))
356 (skip-chars-forward "^\200-\377")))
360 (defun webmail-hotmail-open ()
361 (goto-char (point-min))
362 (if (re-search-forward
363 "action=\"https?://\\([^/]+\\)/cgi-bin/dologin" nil t)
364 (setq webmail-aux (match-string 1))
365 (webmail-error "open@1")))
367 (defun webmail-hotmail-login ()
369 (goto-char (point-min))
370 (if (re-search-forward
371 "https?://\\([^/]+hotmail\\.msn\\.com\\)/cgi-bin/" nil t)
372 (setq site (match-string 1))
373 (webmail-error "login@1"))
374 (goto-char (point-min))
375 (if (re-search-forward
376 "\\(/cgi-bin/HoTMaiL\\?[^\"]*a=b[^\"]*\\)" nil t)
377 (setq webmail-aux (concat "http://" site (match-string 1)))
378 (webmail-error "login@2"))))
380 (defun webmail-hotmail-list ()
381 (goto-char (point-min))
382 (skip-chars-forward " \t\n\r")
383 (let (site url newp (total "0"))
386 (if (re-search-forward "\\([0-9]+\\) *<b>(\\([0-9]+\\) new)" nil t)
387 (message "Found %s (%s new)" (setq total (match-string 1))
389 (if (re-search-forward "\\([0-9]+\\) new" nil t)
390 (message "Found %s new" (setq total (match-string 1)))
391 (webmail-error "list@0"))))
392 (unless (equal total "0")
393 (goto-char (point-min))
394 (if (re-search-forward
395 "https?://\\([^/]+hotmail\\.msn\\.com\\)/cgi-bin/" nil t)
396 (setq site (match-string 1))
397 (webmail-error "list@1"))
398 (goto-char (point-min))
399 (if (re-search-forward "disk=\\([^&]*\\)&" nil t)
401 (concat "http://" site "/cgi-bin/HoTMaiL?disk="
403 (webmail-error "list@2"))
404 (goto-char (point-max))
405 (while (re-search-backward
406 "newmail\\.gif\\|href=\"\\(/cgi-bin/getmsg\\?[^\"]+\\)\""
408 (if (setq url (match-string 1))
410 (if (or newp (not webmail-newmail-only))
412 (if (string-match "msg=\\([^&]+\\)" url)
413 (setq id (match-string 1 url)))
414 (push (cons id (concat "http://" site url "&raw=0"))
419 ;; Thank victor@idaccr.org (Victor S. Miller) for raw=0
421 (defun webmail-hotmail-article (file id)
422 (goto-char (point-min))
423 (skip-chars-forward " \t\n\r")
425 (if (not (search-forward "<pre>" nil t))
426 (webmail-error "article@3"))
427 (skip-chars-forward "\n\r\t ")
428 (delete-region (point-min) (point))
429 (if (not (search-forward "</pre>" nil t))
430 (webmail-error "article@3.1"))
431 (delete-region (match-beginning 0) (point-max))
432 (mm-url-remove-markup)
433 (mm-url-decode-entities-nbsp)
434 (goto-char (point-min))
435 (while (re-search-forward "\r\n?" nil t)
436 (replace-match "\n"))
437 (goto-char (point-min))
439 (if (not (looking-at "\n*From "))
440 (insert "From nobody " (current-time-string) "\n")
442 (insert "X-Gnus-Webmail: " (symbol-value 'user)
443 "@" (symbol-name webmail-type) "\n")
444 (mm-append-to-file (point-min) (point-max) file)))
446 (defun webmail-hotmail-article-old (file id)
447 (let (p attachment count mime hotmail-direct)
449 (webmail-encode-8bit)
450 (goto-char (point-min))
451 (if (not (search-forward "<DIV>" nil t))
452 (if (not (search-forward "Reply All" nil t))
453 (webmail-error "article@1")
454 (setq hotmail-direct t))
455 (goto-char (match-beginning 0)))
456 (narrow-to-region (point-min) (point))
457 (if (not (search-backward "<table" nil t 2))
458 (webmail-error "article@1.1"))
459 (delete-region (point-min) (match-beginning 0))
460 (while (search-forward "<a href=" nil t)
461 (setq p (match-beginning 0))
462 (search-forward "</a>" nil t)
463 (delete-region p (match-end 0)))
464 (mm-url-remove-markup)
465 (mm-url-decode-entities-nbsp)
466 (goto-char (point-min))
468 (goto-char (point-min))
469 (when (search-forward "\n\n" nil t)
471 (delete-region (point) (point-max)))
472 (goto-char (point-max))
476 (while (re-search-forward
477 "<tt>\\|<div>\\|\\(http://[^/]+/cgi-bin/getmsg/\\([^\?]+\\)\?[^\"]*\\)\""
479 (if (setq attachment (match-string 1))
480 (let ((filename (match-string 2))
481 bufname);; Attachment
482 (delete-region p (match-end 0))
484 (set-buffer (generate-new-buffer " *webmail-att*"))
485 (mm-url-insert attachment)
486 (push (current-buffer) webmail-buffer-list)
487 (setq bufname (buffer-name)))
489 (insert "<#part type="
491 (string-match "\\.[^\\.]+$" filename)
492 (mailcap-extension-to-mime
493 (match-string 0 filename)))
494 "application/octet-stream"))
495 (insert " buffer=\"" bufname "\"")
496 (insert " filename=\"" filename "\"")
497 (insert " disposition=\"inline\"")
498 (insert "><#/part>\n")
500 (delete-region p (match-end 0))
502 (if (not (search-forward "</tt>" nil t))
503 (webmail-error "article@1.2")
504 (delete-region (match-beginning 0) (match-end 0)))
506 (while (and (> count 0)
507 (re-search-forward "</div>\\|\\(<div>\\)" nil t))
509 (setq count (1+ count))
510 (if (= (setq count (1- count)) 0)
511 (delete-region (match-beginning 0)
513 (narrow-to-region p (point))
514 (goto-char (point-min))
516 ((looking-at "<pre>")
517 (goto-char (match-end 0))
518 (if (looking-at "$") (forward-char))
519 (delete-region (point-min) (point))
520 (mm-url-remove-markup)
521 (mm-url-decode-entities-nbsp)
525 (insert "<#part type=\"text/html\" disposition=inline>")
526 (goto-char (point-max))
527 (insert "<#/part>")))
528 (goto-char (point-max))
531 (delete-region p (point-max))
532 (goto-char (point-min))
533 ;; Some blank line to seperate mails.
534 (insert "\n\nFrom nobody " (current-time-string) "\n")
535 (insert "X-Gnus-Webmail: " (symbol-value 'user)
536 "@" (symbol-name webmail-type) "\n")
538 (insert (format "X-Message-ID: <%s@hotmail.com>\n" id)))
539 (unless (looking-at "$")
540 (if (search-forward "\n\n" nil t)
542 (webmail-error "article@2")))
543 (narrow-to-region (point) (point-max))
545 (insert "MIME-Version: 1.0\n"
548 (delete-region (point-min) (point-max)))))
549 (goto-char (point-min))
551 (let (case-fold-search)
552 (while (re-search-forward "^From " nil t)
555 (mm-append-to-file (point-min) (point-max) file)))
559 (defun webmail-yahoo-open ()
560 (goto-char (point-min))
561 (if (re-search-forward "action=\"\\([^\"]+\\)\"" nil t)
562 (setq webmail-aux (match-string 1))
563 (webmail-error "open@1")))
565 (defun webmail-yahoo-login ()
566 (goto-char (point-min))
567 (if (re-search-forward "http://[^/]+[0-9]\\.mail\\.yahoo\\.com/" nil t)
568 (setq webmail-aux (match-string 0))
569 (webmail-error "login@1"))
570 (if (re-search-forward "YY=[0-9]+" nil t)
571 (setq webmail-aux (concat webmail-aux "ym/ShowFolder?"
573 (webmail-error "login@2")))
575 (defun webmail-yahoo-list ()
576 (let (url (newp t) (tofetch 0))
577 (goto-char (point-min))
578 (when (re-search-forward
579 "showing [0-9]+-\\([0-9]+\\) of \\([0-9]+\\)" nil t)
580 ;;(setq listed (match-string 1))
581 (message "Found %s mail(s)" (match-string 2)))
582 (if (string-match "http://[^/]+" webmail-aux)
583 (setq webmail-aux (match-string 0 webmail-aux))
584 (webmail-error "list@1"))
585 (goto-char (point-min))
586 (while (re-search-forward
587 "bgcolor=\"#eeeeee\"\\|href=\"\\(/ym/ShowLetter\\?MsgId=\\([^&]+\\)&[^\"]*\\)\""
589 (if (setq url (match-string 1))
591 (when (or newp (not webmail-newmail-only))
592 (push (cons (match-string 2) (concat webmail-aux url "&toc=1"))
594 (setq tofetch (1+ tofetch)))
597 (setq webmail-articles (nreverse webmail-articles))
598 (message "Fetching %d mail(s)" tofetch)))
600 (defun webmail-yahoo-article (file id)
603 (goto-char (point-min))
604 (if (not (search-forward "value=\"Done\"" nil t))
605 (webmail-error "article@1"))
606 (if (not (search-forward "<table" nil t))
607 (webmail-error "article@2"))
608 (delete-region (point-min) (match-beginning 0))
609 (if (not (search-forward "</table>" nil t))
610 (webmail-error "article@3"))
611 (narrow-to-region (point-min) (match-end 0))
612 (while (search-forward "<a href=" nil t)
613 (setq p (match-beginning 0))
614 (search-forward "</a>" nil t)
615 (delete-region p (match-end 0)))
616 (mm-url-remove-markup)
617 (mm-url-decode-entities-nbsp)
618 (goto-char (point-min))
620 (goto-char (point-max))
624 (while (re-search-forward "[^\"]*/ShowLetter/[^\?]+\?[^\"]*" nil t)
625 (setq attachment (match-string 0))
626 (let (bufname ct ctl cd description)
627 (if (not (search-forward "<table" nil t))
628 (webmail-error "article@4"))
629 (delete-region p (match-beginning 0))
630 (if (not (search-forward "</table>" nil t))
631 (webmail-error "article@5"))
632 (narrow-to-region p (match-end 0))
633 (mm-url-remove-markup)
634 (mm-url-decode-entities-nbsp)
635 (goto-char (point-min))
637 (setq ct (mail-fetch-field "content-type")
638 ctl (ignore-errors (mail-header-parse-content-type ct))
639 ;;cte (mail-fetch-field "content-transfer-encoding")
640 cd (mail-fetch-field "content-disposition")
641 description (mail-fetch-field "content-description")
642 id (mail-fetch-field "content-id"))
643 (delete-region (point-min) (point-max))
646 (set-buffer (generate-new-buffer " *webmail-att*"))
647 (mm-url-insert (concat webmail-aux attachment))
648 (push (current-buffer) webmail-buffer-list)
649 (setq bufname (buffer-name)))
651 (if (and ctl (not (equal (car ctl) "text/")))
652 (insert " type=\"" (car ctl) "\""))
653 (insert " buffer=\"" bufname "\"")
655 (insert " disposition=\"" cd "\""))
657 (insert " description=\"" description "\""))
658 (insert "><#/part>\n")
660 (delete-region p (point-max))
661 (goto-char (point-min))
662 ;; Some blank line to seperate mails.
663 (insert "\n\nFrom nobody " (current-time-string) "\n")
664 (insert "X-Gnus-Webmail: " (symbol-value 'user)
665 "@" (symbol-name webmail-type) "\n")
667 (insert (format "X-Message-ID: <%s@yahoo.com>\n" id)))
668 (unless (looking-at "$")
669 (if (search-forward "\n\n" nil t)
671 (webmail-error "article@2")))
672 (narrow-to-region (point) (point-max))
673 (insert "MIME-Version: 1.0\n"
676 (delete-region (point-min) (point-max))))
677 (goto-char (point-min))
679 (let (case-fold-search)
680 (while (re-search-forward "^From " nil t)
683 (mm-append-to-file (point-min) (point-max) file)))
687 (defun webmail-netscape-open ()
688 (goto-char (point-min))
689 (setq webmail-aux "")
690 (while (re-search-forward
691 "TYPE=hidden *NAME=\\([^ ]+\\) *VALUE=\"\\([^\"]+\\)"
693 (setq webmail-aux (concat webmail-aux "&" (match-string 1) "="
696 (defun webmail-netaddress-open ()
697 (goto-char (point-min))
698 (if (re-search-forward "action=\"\\([^\"]+\\)\"" nil t)
699 (setq webmail-aux (concat (car webmail-open-url) (match-string 1)))
700 (webmail-error "open@1")))
702 (defun webmail-netaddress-login ()
703 (webmail-refresh-redirect)
704 (goto-char (point-min))
705 (if (re-search-forward "tpl/[^/]+/\\([^/]+\\)" nil t)
706 (setq webmail-session (match-string 1))
707 (webmail-error "login@1")))
709 (defun webmail-netaddress-list ()
710 (webmail-refresh-redirect)
712 (goto-char (point-min))
713 (when (re-search-forward
714 "(\\([0-9]+\\) unread, \\([0-9]+\\) total)" nil t)
715 (message "Found %s mail(s), %s unread"
716 (match-string 2) (match-string 1)))
717 (goto-char (point-min))
718 (while (re-search-forward
719 "MR\\[i\\]\\.R='\\([^']*\\)'\\|MR\\[i\\]\\.Q='\\([^']+\\)'" nil t)
720 (if (setq id (match-string 2))
723 (format "%s/tpl/Message/%s/Read?Q=%s&FolderID=-4&SortUseCase=True&Sort=Date&Headers=True"
724 (car webmail-article-url)
725 webmail-session id)))
726 (if (or (not webmail-newmail-only)
727 (equal (match-string 1) "True"))
728 (push item webmail-articles))))
729 (setq webmail-articles (nreverse webmail-articles))))
731 (defun webmail-netaddress-single-part ()
732 (goto-char (point-min))
734 ((looking-at "[\t\040\r\n]*<font face=[^>]+>[\t\040\r\n]*")
737 (while (re-search-forward "[\t\040\r\n]+" nil t)
739 (goto-char (point-min))
740 (while (re-search-forward "<br>" nil t)
741 (replace-match "\n"))
742 (mm-url-remove-markup)
743 (mm-url-decode-entities-nbsp)
746 (insert "<#part type=\"text/html\" disposition=inline>")
747 (goto-char (point-max))
751 (defun webmail-netaddress-article (file id)
752 (webmail-refresh-redirect)
753 (let (p p1 attachment count mime type)
755 (webmail-encode-8bit)
756 (goto-char (point-min))
757 (if (not (search-forward "Trash" nil t))
758 (webmail-error "article@1"))
759 (if (not (search-forward "<form>" nil t))
760 (webmail-error "article@2"))
761 (delete-region (point-min) (match-beginning 0))
762 (if (not (search-forward "</form>" nil t))
763 (webmail-error "article@3"))
764 (narrow-to-region (point-min) (match-end 0))
765 (goto-char (point-min))
766 (while (re-search-forward "[\040\t\r\n]+" nil t)
768 (goto-char (point-min))
769 (while (search-forward "<b>" nil t)
770 (replace-match "\n"))
771 (mm-url-remove-markup)
772 (mm-url-decode-entities-nbsp)
773 (goto-char (point-min))
775 (goto-char (point-min))
776 (while (re-search-forward "^\040+\\|\040+$" nil t)
778 (goto-char (point-min))
779 (while (re-search-forward "\040+" nil t)
781 (goto-char (point-max))
785 (unless (search-forward "<!-- Data -->" nil t)
786 (webmail-error "article@4"))
788 (delete-region p (point))
789 (goto-char (point-max))
790 (unless (re-search-backward
791 "[\040\t]*<br>[\040\t\r\n]*<br>[\040\t\r\n]*<form" p t)
792 (webmail-error "article@5"))
793 (delete-region (point) (point-max))
795 (while (search-forward
796 "<TABLE border=\"0\" WIDTH=\"98%\" cellpadding=0 cellspacing=0>"
799 (unless (search-forward "</TABLE>" nil t)
800 (webmail-error "article@6"))
802 (if (search-backward "<IMG " p t)
804 (unless (re-search-forward "HREF=\"\\(/tpl/Attachment/[^/]+/\\([^/]+/[^\?]+\\)[^\"]+\\)\"" p1 t)
805 (webmail-error "article@7"))
806 (setq attachment (match-string 1))
807 (setq type (match-string 2))
808 (unless (search-forward "</TABLE>" nil t)
809 (webmail-error "article@8"))
810 (delete-region p (point))
811 (let (bufname);; Attachment
813 (set-buffer (generate-new-buffer " *webmail-att*"))
814 (mm-url-insert (concat (car webmail-open-url) attachment))
815 (push (current-buffer) webmail-buffer-list)
816 (setq bufname (buffer-name)))
817 (insert "<#part type=" type)
818 (insert " buffer=\"" bufname "\"")
819 (insert " disposition=\"inline\"")
820 (insert "><#/part>\n")
826 "<TABLE border=\"0\" WIDTH=\"98%\" cellpadding=0 cellspacing=0>"
830 (webmail-netaddress-single-part)
831 (goto-char (point-max))
835 (narrow-to-region p (point-max))
836 (setq mime (webmail-netaddress-single-part))
838 (goto-char (point-min))
839 ;; Some blank line to seperate mails.
840 (insert "\n\nFrom nobody " (current-time-string) "\n")
841 (insert "X-Gnus-Webmail: " (symbol-value 'user)
842 "@" (symbol-name webmail-type) "\n")
844 (insert (format "X-Message-ID: <%s@%s>\n" id webmail-address)))
845 (unless (looking-at "$")
846 (if (search-forward "\n\n" nil t)
848 (webmail-error "article@2")))
850 (narrow-to-region (point-min) (point))
851 (goto-char (point-min))
853 (if (looking-at "MIME-Version\\|Content-Type")
854 (delete-region (point)
857 (if (re-search-forward "^[^ \t]" nil t)
858 (goto-char (match-beginning 0))
861 (goto-char (point-max))
863 (narrow-to-region (point) (point-max))
864 (insert "MIME-Version: 1.0\n"
867 (delete-region (point-min) (point-max))))
868 (goto-char (point-min))
870 (let (case-fold-search)
871 (while (re-search-forward "^From " nil t)
874 (mm-append-to-file (point-min) (point-max) file)))
876 (defun webmail-netscape-article (file id)
877 (let (p p1 attachment count mime type)
879 (webmail-encode-8bit)
880 (goto-char (point-min))
881 (if (not (search-forward "Trash" nil t))
882 (webmail-error "article@1"))
883 (if (not (search-forward "<form>" nil t))
884 (webmail-error "article@2"))
885 (delete-region (point-min) (match-beginning 0))
886 (if (not (search-forward "</form>" nil t))
887 (webmail-error "article@3"))
888 (narrow-to-region (point-min) (match-end 0))
889 (goto-char (point-min))
890 (while (re-search-forward "[\040\t\r\n]+" nil t)
892 (goto-char (point-min))
893 (while (re-search-forward "<a href=[^>]*>[^<]*</a>" nil t)
895 (goto-char (point-min))
896 (while (search-forward "<b>" nil t)
897 (replace-match "\n"))
898 (mm-url-remove-markup)
899 (mm-url-decode-entities-nbsp)
900 (goto-char (point-min))
902 (goto-char (point-min))
903 (while (re-search-forward "^\040+\\|\040+$" nil t)
905 (goto-char (point-min))
906 (while (re-search-forward "\040+" nil t)
908 (goto-char (point-max))
912 (unless (search-forward "<!-- Data -->" nil t)
913 (webmail-error "article@4"))
915 (delete-region p (point))
916 (goto-char (point-max))
917 (unless (re-search-backward
918 "<form name=\"Transfer2\"" p t)
919 (webmail-error "article@5"))
920 (delete-region (point) (point-max))
922 (while (search-forward
923 "<TABLE border=\"0\" WIDTH=\"98%\" cellpadding=0 cellspacing=0>"
926 (unless (search-forward "</TABLE>" nil t)
927 (webmail-error "article@6"))
929 (if (search-backward "<IMG " p t)
931 (unless (re-search-forward "HREF=\"\\(/tpl/Attachment/[^/]+/\\([^/]+/[^\?]+\\)[^\"]+\\)\"" p1 t)
932 (webmail-error "article@7"))
933 (setq attachment (match-string 1))
934 (setq type (match-string 2))
935 (unless (search-forward "</TABLE>" nil t)
936 (webmail-error "article@8"))
937 (delete-region p (point))
938 (let (bufname);; Attachment
940 (set-buffer (generate-new-buffer " *webmail-att*"))
941 (mm-url-insert (concat (car webmail-open-url) attachment))
942 (push (current-buffer) webmail-buffer-list)
943 (setq bufname (buffer-name)))
944 (insert "<#part type=" type)
945 (insert " buffer=\"" bufname "\"")
946 (insert " disposition=\"inline\"")
947 (insert "><#/part>\n")
953 "<TABLE border=\"0\" WIDTH=\"98%\" cellpadding=0 cellspacing=0>"
957 (webmail-netaddress-single-part)
958 (goto-char (point-max))
962 (narrow-to-region p (point-max))
963 (setq mime (webmail-netaddress-single-part))
965 (goto-char (point-min))
966 ;; Some blank line to seperate mails.
967 (insert "\n\nFrom nobody " (current-time-string) "\n")
968 (insert "X-Gnus-Webmail: " (symbol-value 'user)
969 "@" (symbol-name webmail-type) "\n")
971 (insert (format "X-Message-ID: <%s@%s>\n" id webmail-address)))
972 (unless (looking-at "$")
973 (if (search-forward "\n\n" nil t)
975 (webmail-error "article@2")))
977 (narrow-to-region (point-min) (point))
978 (goto-char (point-min))
980 (if (looking-at "MIME-Version\\|Content-Type")
981 (delete-region (point)
984 (if (re-search-forward "^[^ \t]" nil t)
985 (goto-char (match-beginning 0))
988 (goto-char (point-max))
990 (narrow-to-region (point) (point-max))
991 (insert "MIME-Version: 1.0\n"
994 (delete-region (point-min) (point-max))))
995 (goto-char (point-min))
997 (let (case-fold-search)
998 (while (re-search-forward "^From " nil t)
1001 (mm-append-to-file (point-min) (point-max) file)))
1005 (defun webmail-my-deja-open ()
1006 (webmail-refresh-redirect)
1007 (goto-char (point-min))
1008 (if (re-search-forward "action=\"\\([^\"]+maillogin\\.py[^\"]*\\)\""
1010 (setq webmail-aux (match-string 1))
1011 (webmail-error "open@1")))
1013 (defun webmail-my-deja-list ()
1014 (let (item id newp base)
1015 (goto-char (point-min))
1016 (when (re-search-forward "href=\"\\(\\([^\"]*\\)/mailnf\\.[^\"]*\\)\""
1018 (let ((url (match-string 1)))
1019 (setq base (match-string 2))
1021 (mm-url-insert url)))
1022 (goto-char (point-min))
1023 (when (re-search-forward
1024 "(\\([0-9]+\\) Message.?-[^>]*\\([0-9]+\\) New"
1026 (message "Found %s mail(s), %s unread"
1027 (match-string 1) (match-string 2)))
1028 (goto-char (point-min))
1029 (while (re-search-forward
1030 "newmail\\.gif\\|href=\"[^\"]*\\(mailnf\\.[^\"]+act=view[^\"]+mid=\\([^\"&]+\\)[^\"]+\\)\""
1032 (if (setq id (match-string 2))
1033 (when (and (or newp (not webmail-newmail-only))
1034 (not (assoc id webmail-articles)))
1035 (push (cons id (setq webmail-aux
1036 (concat base "/" (match-string 1))))
1040 (setq webmail-articles (nreverse webmail-articles))))
1042 (defun webmail-my-deja-article-part (base)
1045 ((looking-at "[\t\040\r\n]*<!--[^>]*>")
1047 ((looking-at "[\t\040\r\n]*</PRE>")
1049 ((looking-at "[\t\040\r\n]*<PRE>")
1053 (narrow-to-region (point)
1054 (if (re-search-forward "</?PRE>" nil t)
1057 (goto-char (point-min))
1058 (mm-url-remove-markup)
1059 (mm-url-decode-entities-nbsp)
1060 (goto-char (point-max))))
1061 ((looking-at "[\t\040\r\n]*<TABLE")
1063 (narrow-to-region (point)
1064 (if (search-forward "</TABLE>" nil t 2)
1067 (goto-char (point-min))
1068 (let (name type url bufname)
1069 (if (and (search-forward "File Name:" nil t)
1070 (re-search-forward "<FONT[^>]+>\\([^<]+\\)" nil t))
1071 (setq name (match-string 1)))
1072 (if (and (search-forward "File Type:" nil t)
1073 (re-search-forward "<FONT[^>]+>\\([^<]+\\)" nil t))
1074 (setq type (match-string 1)))
1075 (unless (re-search-forward "action=\"getattach\\.cgi/\\([^\"]+\\)"
1077 (webmail-error "article@5"))
1078 (setq url (concat base "/getattach.cgi/" (match-string 1)
1080 (while (re-search-forward
1081 "type=hidden name=\"\\([^\"]+\\)\" value=\"\\([^\"]+\\)"
1083 (setq url (concat url "&" (match-string 1) "="
1085 (delete-region (point-min) (point-max))
1087 (set-buffer (generate-new-buffer " *webmail-att*"))
1089 (push (current-buffer) webmail-buffer-list)
1090 (setq bufname (buffer-name)))
1091 (insert "<#part type=\"" type "\"")
1092 (if name (insert " filename=\"" name "\""))
1093 (insert " buffer=\"" bufname "\"")
1094 (insert " disposition=inline><#/part>"))))
1096 (insert "<#part type=\"text/html\" disposition=inline>")
1097 (goto-char (point-max))
1098 (insert "<#/part>")))))
1100 (defun webmail-my-deja-article (file id)
1102 (goto-char (point-min))
1103 (unless (string-match "\\([^\"]+\\)/mail" webmail-aux)
1104 (webmail-error "article@0"))
1105 (setq base (match-string 1 webmail-aux))
1106 (when (re-search-forward
1107 "href=\"[^\"]*\\(mailnf\\.[^\"]+act=move[^\"]+mid=\\([^\"&]+\\)[^\"]+\\)\""
1109 (setq webmail-aux (concat base "/" (match-string 1)))
1110 (string-match "mid=[^\"&]+" webmail-aux)
1111 (setq webmail-aux (replace-match "mid=%s" nil nil webmail-aux)))
1112 (unless (search-forward "<HR noshade>" nil t)
1113 (webmail-error "article@1"))
1114 (delete-region (point-min) (point))
1115 (unless (search-forward "<HR noshade>" nil t)
1116 (webmail-error "article@2"))
1118 (narrow-to-region (point-min) (point))
1119 (while (search-forward "\r\n" nil t)
1120 (replace-match "\n"))
1121 (mm-url-remove-markup)
1122 (mm-url-decode-entities-nbsp)
1123 (goto-char (point-min))
1124 (while (re-search-forward "\n\n+" nil t)
1125 (replace-match "\n"))
1126 (goto-char (point-max)))
1128 (narrow-to-region (point) (point-max))
1129 (goto-char (point-max))
1130 (unless (search-backward "<HR noshade>" nil t)
1131 (webmail-error "article@3"))
1132 (unless (search-backward "</TT>" nil t)
1133 (webmail-error "article@4"))
1134 (delete-region (point) (point-max))
1135 (goto-char (point-min))
1137 (webmail-my-deja-article-part base))
1138 (insert "MIME-Version: 1.0\n"
1141 (delete-region (point-min) (point-max)))))
1142 (goto-char (point-min))
1143 (insert "\n\nFrom nobody " (current-time-string) "\n")
1144 (insert "X-Gnus-Webmail: " (symbol-value 'user)
1145 "@" (symbol-name webmail-type) "\n")
1146 (if (eq (char-after) ?\n)
1148 (mm-append-to-file (point-min) (point-max) file)))
1152 ;;; webmail.el ends here