1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
|
;;; vm-pop.el --- Simple POP (RFC 1939) client for VM
;;
;; This file is part of VM
;;
;; Copyright (C) 1993, 1994, 1997, 1998 Kyle E. Jones
;; Copyright (C) 2003-2006 Robert Widhopf-Fenk
;;
;; This program 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 2 of the License, or
;; (at your option) any later version.
;;
;; This program 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.
;;
;; You should have received a copy of the GNU General Public License along
;; with this program; if not, write to the Free Software Foundation, Inc.,
;; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
;;; Code:
(provide 'vm-pop)
;; For function declarations
(eval-when-compile
(require 'vm-misc)
(require 'vm-folder)
(require 'vm-summary)
(require 'vm-window)
(require 'vm-motion)
(require 'vm-undo)
(require 'vm-delete)
(require 'vm-crypto)
(require 'vm-mime)
)
(declare-function vm-submit-bug-report
"vm.el" (&optional pre-hooks post-hooks))
(declare-function open-network-stream
"subr.el" (name buffer host service &rest parameters))
(if (fboundp 'define-error)
(progn
(define-error 'vm-cant-uidl "Can't use UIDL")
(define-error 'vm-dele-failed "DELE command failed")
(define-error 'vm-uidl-failed "UIDL command failed"))
(put 'vm-cant-uidl 'error-conditions '(vm-cant-uidl error))
(put 'vm-cant-uidl 'error-message "Can't use UIDL")
(put 'vm-dele-failed 'error-conditions '(vm-dele-failed error))
(put 'vm-dele-failed 'error-message "DELE command failed")
(put 'vm-uidl-failed 'error-conditions '(vm-uidl-failed error))
(put 'vm-uidl-failed 'error-message "UIDL command failed"))
(defun vm-pop-find-cache-file-for-spec (remote-spec)
"Given REMOTE-SPEC, which is a maildrop specification of a folder on
a POP server, find its cache file on the file system"
;; Prior to VM 7.11, we computed the cache filename
;; based on the full POP spec including the password
;; if it was in the spec. This meant that every
;; time the user changed his password, we'd start
;; visiting the wrong (and probably nonexistent)
;; cache file.
;;
;; To fix this we do two things. First, migrate the
;; user's caches to the filenames based in the POP
;; sepc without the password. Second, we visit the
;; old password based filename if it still exists
;; after trying to migrate it.
;;
;; For VM 7.16 we apply the same logic to the access
;; methods, pop, pop-ssh and pop-ssl and to
;; authentication method and service port, which can
;; also change and lead us to visit a nonexistent
;; cache file. The assumption is that these
;; properties of the connection can change and we'll
;; still be accessing the same mailbox on the
;; server.
(let ((f-pass (vm-pop-make-filename-for-spec remote-spec))
(f-nopass (vm-pop-make-filename-for-spec remote-spec t))
(f-nospec (vm-pop-make-filename-for-spec remote-spec t t)))
(cond ((or (string= f-pass f-nospec)
(file-exists-p f-nospec))
nil )
((file-exists-p f-pass)
;; try to migrate
(condition-case nil
(rename-file f-pass f-nospec)
(error nil)))
((file-exists-p f-nopass)
;; try to migrate
(condition-case nil
(rename-file f-nopass f-nospec)
(error nil))))
;; choose the one that exists, password version,
;; nopass version and finally nopass+nospec
;; version.
(cond ((file-exists-p f-pass)
f-pass)
((file-exists-p f-nopass)
f-nopass)
(t
f-nospec))))
;; Our goal is to drag the mail from the POP maildrop to the crash box.
;; just as if we were using movemail on a spool file.
;; We remember which messages we have retrieved so that we can
;; leave the message in the mailbox, and yet not retrieve the
;; same messages again and again.
;;;###autoload
(defun vm-pop-move-mail (source destination)
(let ((process nil)
(m-per-session vm-pop-messages-per-session)
(b-per-session vm-pop-bytes-per-session)
(handler (vm-find-file-name-handler source 'vm-pop-move-mail))
(popdrop (or (vm-pop-find-name-for-spec source)
(vm-safe-popdrop-string source)))
(statblob nil)
(can-uidl t)
(msgid (list nil (vm-popdrop-sans-password source) 'uidl))
(pop-retrieved-messages vm-pop-retrieved-messages)
auto-expunge x
mailbox-count mailbox-size message-size response
n (retrieved 0) retrieved-bytes process-buffer uidl)
(setq auto-expunge
(cond ((setq x (assoc source vm-pop-auto-expunge-alist))
(cdr x))
((setq x (assoc (vm-popdrop-sans-password source)
vm-pop-auto-expunge-alist))
(cdr x))
(vm-pop-expunge-after-retrieving
t)
((member source vm-pop-auto-expunge-warned)
nil)
(t
(vm-warn 1 1
"Warning: POP folder is not set to auto-expunge")
(setq vm-pop-auto-expunge-warned
(cons source vm-pop-auto-expunge-warned))
nil)))
(unwind-protect
(catch 'done
(if handler
(throw 'done
(funcall handler 'vm-pop-move-mail source destination)))
(setq process (vm-pop-make-session source))
(or process (throw 'done nil))
(setq process-buffer (process-buffer process))
(save-excursion
(set-buffer process-buffer)
;; find out how many messages are in the box.
(vm-pop-send-command process "STAT")
(setq response (vm-pop-read-stat-response process)
mailbox-count (nth 0 response)
mailbox-size (nth 1 response))
;; forget it if the command fails
;; or if there are no messages present.
(if (or (null mailbox-count)
(< mailbox-count 1))
(throw 'done nil))
;; loop through the maildrop retrieving and deleting
;; messages as we go.
(setq n 1 retrieved-bytes 0)
(setq statblob (vm-pop-start-status-timer))
(vm-set-pop-stat-x-box statblob popdrop)
(vm-set-pop-stat-x-maxmsg statblob mailbox-count)
(while (and (<= n mailbox-count)
(or (not (natnump m-per-session))
(< retrieved m-per-session))
(or (not (natnump b-per-session))
(< retrieved-bytes b-per-session)))
(catch 'skip
(vm-set-pop-stat-x-currmsg statblob n)
(if can-uidl
(condition-case nil
(let (list)
(vm-pop-send-command process (format "UIDL %d" n))
(setq response (vm-pop-read-response process t))
(if (null response)
(signal 'vm-cant-uidl nil))
(setq list (vm-parse response "\\([\041-\176]+\\) *")
uidl (nth 2 list))
(if (null uidl)
(signal 'vm-cant-uidl nil))
(setcar msgid uidl)
(when (member msgid pop-retrieved-messages)
(if vm-pop-ok-to-ask
(vm-inform
6
"Skipping message %d (of %d) from %s (retrieved already)..."
n mailbox-count popdrop))
(throw 'skip t)))
(vm-cant-uidl
;; something failed, so UIDL must not be working.
(if (and (not auto-expunge)
(or (not vm-pop-ok-to-ask)
(not (vm-pop-ask-about-no-uidl popdrop))))
(progn
(vm-inform 0 "Skipping mailbox %s (no UIDL support)"
popdrop)
(throw 'done (not (equal retrieved 0))))
;; user doesn't care, so go ahead and
;; expunge from the server
(setq can-uidl nil
msgid nil)))))
(vm-pop-send-command process (format "LIST %d" n))
(setq message-size (vm-pop-read-list-response process))
(vm-set-pop-stat-x-need statblob message-size)
(if (and (integerp vm-pop-max-message-size)
(> message-size vm-pop-max-message-size)
(progn
(setq response
(if vm-pop-ok-to-ask
(vm-pop-ask-about-large-message
process popdrop message-size n)
'skip))
(not (eq response 'retrieve))))
(progn
(if (eq response 'delete)
(progn
(vm-inform 6 "Deleting message %d..." n)
(vm-pop-send-command process (format "DELE %d" n))
(and (null (vm-pop-read-response process))
(throw 'done (not (equal retrieved 0)))))
(if vm-pop-ok-to-ask
(vm-inform 6 "Skipping message %d..." n)
(vm-inform
5
"Skipping message %d in %s, too large (%d > %d)..."
n popdrop message-size vm-pop-max-message-size)))
(throw 'skip t)))
(vm-inform 6 "Retrieving message %d (of %d) from %s..."
n mailbox-count popdrop)
(vm-pop-send-command process (format "RETR %d" n))
(and (null (vm-pop-read-response process))
(throw 'done (not (equal retrieved 0))))
(and (null (vm-pop-retrieve-to-target process destination
statblob))
(throw 'done (not (equal retrieved 0))))
(vm-inform 6 "Retrieving message %d (of %d) from %s...done"
n mailbox-count popdrop)
(vm-increment retrieved)
(and b-per-session
(setq retrieved-bytes (+ retrieved-bytes message-size)))
(if (and (not auto-expunge) msgid)
(setq pop-retrieved-messages
(cons (copy-sequence msgid)
pop-retrieved-messages))
;; Either the user doesn't want the messages
;; kept in the mailbox or there's no UIDL
;; support so there's no way to remember what
;; messages we've retrieved. Delete the
;; message now.
(vm-pop-send-command process (format "DELE %d" n))
;; DELE can't fail but Emacs or this code might
;; blow a gasket and spew filth down the
;; connection, so...
(and (null (vm-pop-read-response process))
(throw 'done (not (equal retrieved 0))))))
(vm-increment n))
(not (equal retrieved 0)) ))
(setq vm-pop-retrieved-messages pop-retrieved-messages)
(if (and (eq vm-flush-interval t) (not (equal retrieved 0)))
(vm-stuff-pop-retrieved))
(and statblob (vm-pop-stop-status-timer statblob))
(if process
(vm-pop-end-session process)))))
(defun vm-pop-check-mail (source)
(let ((process nil)
(handler (vm-find-file-name-handler source 'vm-pop-check-mail))
(retrieved vm-pop-retrieved-messages)
(popdrop (vm-popdrop-sans-password source))
(count 0)
x response)
(unwind-protect
(save-excursion
(catch 'done
(if handler
(throw 'done
(funcall handler 'vm-pop-check-mail source)))
(setq process (vm-pop-make-session source))
(or process (throw 'done nil))
(set-buffer (process-buffer process))
(vm-pop-send-command process "UIDL")
(setq response (vm-pop-read-uidl-long-response process))
(if (null response)
;; server doesn't understand UIDL
nil
(if (null (car response))
;; (nil . nil) is returned if there are no
;; messages in the mailbox.
(progn
(vm-store-folder-totals source '(0 0 0 0))
(throw 'done nil))
(while response
(if (not (and (setq x (assoc (cdr (car response)) retrieved))
(equal (nth 1 x) popdrop)
(eq (nth 2 x) 'uidl)))
(vm-increment count))
(setq response (cdr response))))
(vm-store-folder-totals source (list count 0 0 0))
(throw 'done (not (eq count 0))))
(vm-pop-send-command process "STAT")
(setq response (vm-pop-read-stat-response process))
(if (null response)
nil
(vm-store-folder-totals source (list (car response) 0 0 0))
(not (equal 0 (car response))))))
(and process (vm-pop-end-session process nil vm-pop-ok-to-ask)))))
;;;###autoload
(defun vm-expunge-pop-messages ()
"Deletes all messages from POP mailbox that have already been retrieved
into the current folder. VM sends POP DELE commands to all the
relevant POP servers to remove the messages."
(interactive)
(vm-follow-summary-cursor)
(vm-select-folder-buffer-and-validate 0 (vm-interactive-p))
(vm-error-if-virtual-folder)
(if (and (vm-interactive-p) (eq vm-folder-access-method 'pop))
(error "This command is not meant for POP folders. Use the normal folder expunge instead."))
(let ((process nil)
(source nil)
(trouble nil)
(delete-count 0)
(vm-global-block-new-mail t)
(vm-pop-ok-to-ask t)
popdrop uidl-alist data mp match)
(unwind-protect
(save-excursion
(setq vm-pop-retrieved-messages
(delq nil vm-pop-retrieved-messages))
(setq vm-pop-retrieved-messages
(sort vm-pop-retrieved-messages
(function (lambda (a b)
(cond ((string-lessp (nth 1 a) (nth 1 b)) t)
((string-lessp (nth 1 b)
(nth 1 a))
nil)
((string-lessp (car a) (car b)) t)
(t nil))))))
(setq mp vm-pop-retrieved-messages)
(while mp
(condition-case nil
(catch 'replay
(setq data (car mp))
(if (not (equal source (nth 1 data)))
(progn
(if process
(progn
(vm-pop-end-session process)
(setq process nil)))
(setq source (nth 1 data))
(setq popdrop (or (vm-pop-find-name-for-spec source)
(vm-safe-popdrop-string source)))
(condition-case nil
(progn
(vm-inform 6
"Opening POP session to %s..." popdrop)
(setq process (vm-pop-make-session source))
(if (null process)
(signal 'error nil))
(vm-inform 6
"Expunging messages in %s..." popdrop))
(error
(vm-warn 0 2
"Couldn't open POP session to %s, skipping..."
popdrop)
(setq trouble (cons popdrop trouble))
(while (equal (nth 1 (car mp)) source)
(setq mp (cdr mp)))
(throw 'replay t)))
(set-buffer (process-buffer process))
(vm-pop-send-command process "UIDL")
(setq uidl-alist
(vm-pop-read-uidl-long-response process))
(if (null uidl-alist)
(signal 'vm-uidl-failed nil))))
(if (setq match (rassoc (car data) uidl-alist))
(progn
(vm-pop-send-command process
(format "DELE %s" (car match)))
(if (null (vm-pop-read-response process))
(signal 'vm-dele-failed nil))
(setcar mp nil) ; side effect!!
(vm-increment delete-count)))
(setq mp (cdr mp)))
(vm-dele-failed
(vm-warn
0 2 "DELE %s failed on %s, skipping rest of mailbox..."
(car match) popdrop)
(setq trouble (cons popdrop trouble))
(while (equal (nth 1 (car mp)) source)
(setq mp (cdr mp)))
(throw 'replay t))
(vm-uidl-failed
(vm-warn
0 2 "UIDL %s failed on %s, skipping this mailbox..."
(car match) popdrop)
(setq trouble (cons popdrop trouble))
(while (equal (nth 1 (car mp)) source)
(setq mp (cdr mp)))
(throw 'replay t))))
(if trouble
(progn
(set-buffer (get-buffer-create "*POP Expunge Trouble*"))
(setq buffer-read-only nil)
(erase-buffer)
(insert (format "%s POP message%s expunged.\n\n"
(if (zerop delete-count) "No" delete-count)
(if (= delete-count 1) "" "s")))
(insert "VM had problems expunging messages from:\n")
(nreverse trouble)
(setq mp trouble)
(while mp
(insert " " (car mp) "\n")
(setq mp (cdr mp)))
(setq buffer-read-only t)
(display-buffer (current-buffer)))
(vm-inform 5 "%s POP message%s expunged."
(if (zerop delete-count) "No" delete-count)
(if (= delete-count 1) "" "s"))))
(and process (vm-pop-end-session process)))
(setq vm-pop-retrieved-messages
(delq nil vm-pop-retrieved-messages))))
(defun vm-pop-make-session (source)
(let ((process-to-shutdown nil)
process use-ssl use-ssh success
(folder-type vm-folder-type)
(popdrop (or (vm-pop-find-name-for-spec source)
(vm-safe-popdrop-string source)))
(coding-system-for-read (vm-binary-coding-system))
(coding-system-for-write (vm-binary-coding-system))
(session-name "POP")
(process-connection-type nil)
greeting timestamp ssh-process
host port auth user pass authinfo
source-list process-buffer source-nopwd)
(unwind-protect
(catch 'done
;; parse the maildrop
(setq source-list (vm-pop-parse-spec-to-list source))
;; remove pop or pop-ssl from beginning of list if
;; present.
(when (= 6 (length source-list))
(cond
((equal "pop-ssl" (car source-list))
(setq use-ssl t
session-name "POP over SSL")
;; (when (null vm-stunnel-program)
;; (error
;; "vm-stunnel-program must be non-nil to use POP over SSL."))
)
((equal "pop-ssh" (car source-list))
(setq use-ssh t
session-name "POP over SSH")
(when (null vm-ssh-program)
(error "vm-ssh-program must be non-nil to use POP over SSH."))))
(setq source-list (cdr source-list)))
(setq host (nth 0 source-list)
port (nth 1 source-list)
auth (nth 2 source-list)
user (nth 3 source-list)
pass (nth 4 source-list)
source-nopwd (vm-popdrop-sans-password source))
;; carp if parts are missing
(when (null host)
(error "No host in POP maildrop specification, \"%s\""
source))
(when (null port)
(error "No port in POP maildrop specification, \"%s\""
source))
(when (string-match "^[0-9]+$" port)
(setq port (string-to-number port)))
(when (null auth)
(error
"No authentication method in POP maildrop specification, \"%s\""
source))
(when (null user)
(error "No user in POP maildrop specification, \"%s\""
source))
(when (null pass)
(error "No password in POP maildrop specification, \"%s\""
source))
(when (equal pass "*")
(setq pass (car (cdr (assoc source-nopwd vm-pop-passwords))))
(when (and (null pass)
(boundp 'auth-sources)
(fboundp 'auth-source-user-or-password))
(cond ((and (setq authinfo
(auth-source-user-or-password
'("login" "password")
(vm-pop-find-name-for-spec source)
port))
(equal user (car authinfo)))
(setq pass (cadr authinfo)))
((and (setq authinfo
(auth-source-user-or-password
'("login" "password")
host port))
(equal user (car authinfo)))
(setq pass (cadr authinfo)))))
(while (and (null pass) vm-pop-ok-to-ask)
(setq pass
(read-passwd
(format "POP password for %s: " popdrop)))
(when (equal pass "")
(vm-warn 0 2 "Password cannot be empty")
(setq pass nil)))
(when (null pass)
(vm-inform 0 "Need password for %s" popdrop)
(throw 'done nil))
;; get the trace buffer
(setq process-buffer
(vm-make-work-buffer
(vm-make-trace-buffer-name session-name host)))
(save-excursion
(set-buffer process-buffer)
(setq vm-folder-type (or folder-type vm-default-folder-type))
(buffer-disable-undo process-buffer)
(make-local-variable 'vm-pop-read-point)
;; clear the trace buffer of old output
(erase-buffer)
;; Tell MULE not to mess with the text.
(when (fboundp 'set-buffer-file-coding-system)
(set-buffer-file-coding-system (vm-binary-coding-system) t))
(insert "starting " session-name
" session " (current-time-string) "\n")
(insert (format "connecting to %s:%s\n" host port))
;; open the connection to the server
(cond (use-ssl
(if (null vm-stunnel-program)
(setq process
(open-network-stream session-name
process-buffer
host port
:type 'tls))
(vm-setup-stunnel-random-data-if-needed)
(setq process
(apply 'start-process session-name process-buffer
vm-stunnel-program
(nconc (vm-stunnel-configuration-args host
port)
vm-stunnel-program-switches)))))
(use-ssh
(setq process (open-network-stream
session-name process-buffer
"127.0.0.1"
(vm-setup-ssh-tunnel host port))))
(t
(setq process (open-network-stream session-name
process-buffer
host port))))
(and (null process) (throw 'done nil))
(insert-before-markers "connected\n")
(setq vm-pop-read-point (point))
(vm-process-kill-without-query process)
(when (null (setq greeting (vm-pop-read-response process t)))
(delete-process process)
(throw 'done nil))
(setq process-to-shutdown process)
;; authentication
(cond ((equal auth "pass")
(vm-pop-send-command process (format "USER %s" user))
(and (null (vm-pop-read-response process))
(throw 'done nil))
(vm-pop-send-command process (format "PASS %s" pass))
(unless (vm-pop-read-response process)
(vm-warn 0 0 "POP password for %s incorrect" popdrop)
(setq vm-pop-passwords
(vm-delete (lambda (pair)
(equal (car pair) source-nopwd))
vm-pop-passwords))
;; don't sleep unless we're running synchronously.
(when vm-pop-ok-to-ask
(sleep-for 2))
(throw 'done nil))
(unless (assoc source-nopwd vm-pop-passwords)
(setq vm-pop-passwords (cons (list source-nopwd pass)
vm-pop-passwords)))
(setq success t))
((equal auth "rpop")
(vm-pop-send-command process (format "USER %s" user))
(when (null (vm-pop-read-response process))
(throw 'done nil))
(vm-pop-send-command process (format "RPOP %s" pass))
(when (null (vm-pop-read-response process))
(throw 'done nil)))
((equal auth "apop")
(setq timestamp (vm-parse greeting "[^<]+\\(<[^>]+>\\)")
timestamp (car timestamp))
(when (null timestamp)
(goto-char (point-max))
(insert-before-markers "<<< ooops, no timestamp found in greeting! >>>\n")
(vm-warn 0 0 "Server of %s does not support APOP" popdrop)
;; don't sleep unless we're running synchronously
(if vm-pop-ok-to-ask
(sleep-for 2))
(throw 'done nil))
(vm-pop-send-command
process
(format "APOP %s %s"
user
(vm-pop-md5 (concat timestamp pass))))
(unless (vm-pop-read-response process)
(vm-warn 0 0 "POP password for %s incorrect" popdrop)
(when vm-pop-ok-to-ask
(sleep-for 2))
(throw 'done nil))
(unless (assoc source-nopwd vm-pop-passwords)
(setq vm-pop-passwords (cons (list source-nopwd pass)
vm-pop-passwords)))
(setq success t))
(t (error "Don't know how to authenticate using %s" auth)))
(setq process-to-shutdown nil) )))
;; unwind-protection
(if process-to-shutdown
(vm-pop-end-session process-to-shutdown t))
(vm-tear-down-stunnel-random-data))
(if success
process
;; try again if possible
(when vm-pop-ok-to-ask
(vm-pop-make-session source)))))
(defun vm-pop-end-session (process &optional keep-buffer verbose)
"Kill the POP session represented by PROCESS. PROCESS could be
nil or be already closed. If the optional argument KEEP-BUFFER
is non-nil, the process buffer is retained, otherwise it is
killed as well."
(if (and process (memq (process-status process) '(open run))
(buffer-live-p (process-buffer process)))
(save-excursion
(set-buffer (process-buffer process))
(vm-pop-send-command process "QUIT")
;; Previously we did not read the QUIT response because of
;; TCP shutdown problems (under Windows?) that made it
;; better if we just closed the connection. Microsoft
;; Exchange apparently fails to expunge messages if we shut
;; down the connection without reading the QUIT response.
;; So we provide an option and let the user decide what
;; works best for them.
(if vm-pop-read-quit-response
(progn
(and verbose
(vm-inform 5 "Waiting for response to POP QUIT command..."))
(vm-pop-read-response process)
(and verbose
(vm-inform 5
"Waiting for response to POP QUIT command... done"))))))
(if (and (process-buffer process)
(buffer-live-p (process-buffer process)))
(if (and (null vm-pop-keep-trace-buffer) (not keep-buffer))
(kill-buffer (process-buffer process))
(vm-keep-some-buffers (process-buffer process) 'vm-kept-pop-buffers
vm-pop-keep-trace-buffer
"saved ")))
(if (fboundp 'add-async-timeout)
(add-async-timeout 2 'delete-process process)
(run-at-time 2 nil 'delete-process process)))
(defun vm-pop-stat-timer (o) (aref o 0))
(defun vm-pop-stat-did-report (o) (aref o 1))
(defun vm-pop-stat-x-box (o) (aref o 2))
(defun vm-pop-stat-x-currmsg (o) (aref o 3))
(defun vm-pop-stat-x-maxmsg (o) (aref o 4))
(defun vm-pop-stat-x-got (o) (aref o 5))
(defun vm-pop-stat-x-need (o) (aref o 6))
(defun vm-pop-stat-y-box (o) (aref o 7))
(defun vm-pop-stat-y-currmsg (o) (aref o 8))
(defun vm-pop-stat-y-maxmsg (o) (aref o 9))
(defun vm-pop-stat-y-got (o) (aref o 10))
(defun vm-pop-stat-y-need (o) (aref o 11))
(defun vm-set-pop-stat-timer (o val) (aset o 0 val))
(defun vm-set-pop-stat-did-report (o val) (aset o 1 val))
(defun vm-set-pop-stat-x-box (o val) (aset o 2 val))
(defun vm-set-pop-stat-x-currmsg (o val) (aset o 3 val))
(defun vm-set-pop-stat-x-maxmsg (o val) (aset o 4 val))
(defun vm-set-pop-stat-x-got (o val) (aset o 5 val))
(defun vm-set-pop-stat-x-need (o val) (aset o 6 val))
(defun vm-set-pop-stat-y-box (o val) (aset o 7 val))
(defun vm-set-pop-stat-y-currmsg (o val) (aset o 8 val))
(defun vm-set-pop-stat-y-maxmsg (o val) (aset o 9 val))
(defun vm-set-pop-stat-y-got (o val) (aset o 10 val))
(defun vm-set-pop-stat-y-need (o val) (aset o 11 val))
(defun vm-pop-start-status-timer ()
(let ((blob (make-vector 12 nil))
timer)
(setq timer (add-timeout 5 'vm-pop-report-retrieval-status blob 5))
(vm-set-pop-stat-timer blob timer)
blob ))
(defun vm-pop-stop-status-timer (status-blob)
(if (vm-pop-stat-did-report status-blob)
(vm-inform 5 ""))
(if (fboundp 'disable-timeout)
(disable-timeout (vm-pop-stat-timer status-blob))
(cancel-timer (vm-pop-stat-timer status-blob))))
(defun vm-pop-report-retrieval-status (o)
(vm-set-pop-stat-did-report o t)
(cond ((null (vm-pop-stat-x-got o)) t)
;; should not be possible, but better safe...
((not (eq (vm-pop-stat-x-box o) (vm-pop-stat-y-box o))) t)
((not (eq (vm-pop-stat-x-currmsg o) (vm-pop-stat-y-currmsg o))) t)
(t (vm-inform 6 "Retrieving message %d (of %d) from %s, %s..."
(vm-pop-stat-x-currmsg o)
(vm-pop-stat-x-maxmsg o)
(vm-pop-stat-x-box o)
(if (vm-pop-stat-x-need o)
(format "%d%s of %d%s"
(vm-pop-stat-x-got o)
(if (> (vm-pop-stat-x-got o)
(vm-pop-stat-x-need o))
"!"
"")
(vm-pop-stat-x-need o)
(if (eq (vm-pop-stat-x-got o)
(vm-pop-stat-y-got o))
" (stalled)"
""))
"post processing"))))
(vm-set-pop-stat-y-box o (vm-pop-stat-x-box o))
(vm-set-pop-stat-y-currmsg o (vm-pop-stat-x-currmsg o))
(vm-set-pop-stat-y-maxmsg o (vm-pop-stat-x-maxmsg o))
(vm-set-pop-stat-y-got o (vm-pop-stat-x-got o))
(vm-set-pop-stat-y-need o (vm-pop-stat-x-need o)))
(defun vm-pop-check-connection (process)
(cond ((not (memq (process-status process) '(open run)))
(error "POP connection not open: %s" process))
((not (buffer-live-p (process-buffer process)))
(error "POP process %s's buffer has been killed" process))))
(defun vm-pop-send-command (process command)
(vm-pop-check-connection process)
(goto-char (point-max))
(if (= (aref command 0) ?P)
(insert-before-markers "PASS <omitted>\r\n")
(insert-before-markers command "\r\n"))
(setq vm-pop-read-point (point))
(process-send-string process (format "%s\r\n" command)))
(defun vm-pop-read-response (process &optional return-response-string)
(vm-pop-check-connection process)
(let ((case-fold-search nil)
match-end)
(goto-char vm-pop-read-point)
(while (not (search-forward "\r\n" nil t))
(vm-pop-check-connection process)
(accept-process-output process)
(goto-char vm-pop-read-point))
(setq match-end (point))
(goto-char vm-pop-read-point)
(if (not (looking-at "+OK"))
(progn (setq vm-pop-read-point match-end) nil)
(setq vm-pop-read-point match-end)
(if return-response-string
(buffer-substring (point) match-end)
t ))))
(defun vm-pop-read-past-dot-sentinel-line (process)
(vm-pop-check-connection process)
(let ((case-fold-search nil))
(goto-char vm-pop-read-point)
(while (not (re-search-forward "^\\.\r\n" nil 0))
(beginning-of-line)
;; save-excursion doesn't work right
(let ((opoint (point)))
(vm-pop-check-connection process)
(accept-process-output process)
(goto-char opoint)))
(setq vm-pop-read-point (point))))
(defun vm-pop-read-stat-response (process)
(let ((response (vm-pop-read-response process t))
list)
(if (null response)
nil
(setq list (vm-parse response "\\([^ ]+\\) *"))
(list (string-to-number (nth 1 list)) (string-to-number (nth 2 list))))))
(defun vm-pop-read-list-response (process)
(let ((response (vm-pop-read-response process t)))
(and response
(string-to-number (nth 2 (vm-parse response "\\([^ ]+\\) *"))))))
(defun vm-pop-read-uidl-long-response (process)
(vm-pop-check-connection process)
(let ((start vm-pop-read-point)
(list nil)
n uidl)
(catch 'done
(goto-char start)
(while (not (re-search-forward "^\\.\r\n\\|^-ERR .*$" nil 0))
(beginning-of-line)
;; save-excursion doesn't work right
(let ((opoint (point)))
(vm-pop-check-connection process)
(accept-process-output process)
(goto-char opoint)))
(setq vm-pop-read-point (point-marker))
(goto-char start)
;; no uidl support, bail.
(if (not (looking-at "\\+OK"))
(throw 'done nil))
(forward-line 1)
(while (not (eq (char-after (point)) ?.))
;; not loking at a number, bail.
(if (not (looking-at "[0-9]"))
(throw 'done nil))
(setq n (int-to-string (read (current-buffer))))
(skip-chars-forward " ")
(setq start (point))
(skip-chars-forward "\041-\176")
;; no tag after the message number, bail.
(if (= start (point))
(throw 'done nil))
(setq uidl (buffer-substring start (point)))
(setq list (cons (cons n uidl) list))
(forward-line 1))
;; returning nil means the uidl command failed so don't
;; return nil if there aren't any messages.
(if (null list)
(cons nil nil)
list ))))
(defun vm-pop-ask-about-large-message (process popdrop size n)
(let ((work-buffer nil)
(pop-buffer (current-buffer))
start end)
(unwind-protect
(save-excursion
(save-window-excursion
(vm-pop-send-command process (format "TOP %d %d" n 0))
(if (vm-pop-read-response process)
(progn
(setq start vm-pop-read-point)
(vm-pop-read-past-dot-sentinel-line process)
(setq end vm-pop-read-point)
(setq work-buffer (generate-new-buffer
(format "*headers of %s message %d*"
popdrop n)))
(set-buffer work-buffer)
(insert-buffer-substring pop-buffer start end)
(forward-line -1)
(delete-region (point) (point-max))
(vm-pop-cleanup-region (point-min) (point-max))
(vm-display-buffer work-buffer)
(setq minibuffer-scroll-window (selected-window))
(goto-char (point-min))
(if (re-search-forward "^Received:" nil t)
(progn
(goto-char (match-beginning 0))
(vm-reorder-message-headers
nil :keep-list vm-visible-headers
:discard-regexp vm-invisible-header-regexp)))
(set-window-point (selected-window) (point))))
(if (y-or-n-p (format "Retrieve message %d (size = %d)? " n size))
'retrieve
(if (y-or-n-p (format "Delete message %d from popdrop? " n))
'delete
'skip))))
(and work-buffer (kill-buffer work-buffer)))))
(defun vm-pop-ask-about-no-uidl (popdrop)
(let ((work-buffer nil)
(pop-buffer (current-buffer))
start end)
(unwind-protect
(save-excursion
(save-window-excursion
(setq work-buffer (generate-new-buffer
(format "*trouble with %s*" popdrop)))
(set-buffer work-buffer)
(insert
"You have asked VM to leave messages on the server for the POP mailbox "
popdrop
". VM cannot do so because the server does not seem to support the POP UIDL command.\n\nYou can either continue to retrieve messages from this mailbox with VM deleting the messages from the server, or you can skip this mailbox, leaving messages on the server and not retrieving any messages.")
(fill-individual-paragraphs (point-min) (point-max))
(vm-display-buffer work-buffer)
(setq minibuffer-scroll-window (selected-window))
(yes-or-no-p "Continue retrieving anyway? ")))
(and work-buffer (kill-buffer work-buffer)))))
(defun vm-pop-retrieve-to-target (process target statblob)
(vm-pop-check-connection process)
(let ((start vm-pop-read-point) end)
(goto-char start)
(vm-set-pop-stat-x-got statblob 0)
(while (not (re-search-forward "^\\.\r\n" nil 0))
(beginning-of-line)
;; save-excursion doesn't work right
(let* ((opoint (point))
(func
(function
(lambda (beg end len)
(if vm-pop-read-point
(progn
(vm-set-pop-stat-x-got statblob (- end start))
(if (zerop (% (random) 10))
(vm-pop-report-retrieval-status statblob)))))))
(after-change-functions (cons func after-change-functions)))
(vm-pop-check-connection process)
(accept-process-output process)
(goto-char opoint)))
(vm-set-pop-stat-x-need statblob nil)
(setq vm-pop-read-point (point-marker))
(goto-char (match-beginning 0))
(setq end (point-marker))
(vm-pop-cleanup-region start end)
(vm-set-pop-stat-x-got statblob nil)
;; Some POP servers strip leading and trailing message
;; separators, some don't. Figure out what kind we're
;; talking to and do the right thing.
(if (eq (vm-get-folder-type nil start end) 'unknown)
(progn
(vm-munge-message-separators vm-folder-type start end)
(goto-char start)
;; avoid the consing and stat() call for all but babyl
;; files, since this will probably slow things down.
;; only babyl files have the folder header, and we
;; should only insert it if the target folder is empty.
(if (and (eq vm-folder-type 'babyl)
(cond ((stringp target)
(let ((attrs (file-attributes target)))
(or (null attrs) (equal 0 (nth 7 attrs)))))
((bufferp target)
(save-excursion
(set-buffer target)
(zerop (buffer-size))))))
(let ((opoint (point)))
(vm-convert-folder-header nil vm-folder-type)
;; if start is a marker, then it was moved
;; forward by the insertion. restore it.
(setq start opoint)
(goto-char start)
(vm-skip-past-folder-header)))
(insert (vm-leading-message-separator))
(save-restriction
(narrow-to-region (point) end)
(vm-convert-folder-type-headers 'baremessage vm-folder-type))
(goto-char end)
(insert-before-markers (vm-trailing-message-separator))))
(if (stringp target)
;; Set file type to binary for DOS/Windows. I don't know if
;; this is correct to do or not; it depends on whether the
;; the CRLF or the LF newline convention is used on the inbox
;; associated with this crashbox. This setting assumes the LF
;; newline convention is used.
(let ((buffer-file-type t)
(selective-display nil))
(write-region start end target t 0))
(let ((b (current-buffer)))
(save-excursion
(set-buffer target)
(let ((buffer-read-only nil))
(insert-buffer-substring b start end)))))
(delete-region start end)
t ))
(defun vm-pop-cleanup-region (start end)
(setq end (vm-marker end))
(save-excursion
;; CRLF -> LF
(if vm-xemacs-mule-p
(progn
;; we need this otherwise the end marker gets corrupt and
;; unfortunately decode-coding-region does not return the
;; length to the decoded region
(decode-coding-region start (1- end) 'undecided-dos)
(goto-char (- end 2))
(delete-char 1))
(goto-char start)
(while (and (< (point) end) (search-forward "\r\n" end t))
(replace-match "\n" t t)))
;; chop leading dots
(goto-char start)
(while (and (< (point) end) (re-search-forward "^\\." end t))
(replace-match "" t t)
(forward-char)))
(set-marker end nil))
(defun vm-establish-new-folder-pop-session (&optional interactive)
(let ((process (vm-folder-pop-process))
(vm-pop-ok-to-ask interactive))
(if (processp process)
(vm-pop-end-session process))
(setq process (vm-pop-make-session (vm-folder-pop-maildrop-spec)))
(vm-set-folder-pop-process process)
process ))
(defun vm-pop-get-uidl-data ()
(let ((there (make-vector 67 0))
(process (vm-folder-pop-process)))
(save-excursion
(set-buffer (process-buffer process))
(vm-pop-send-command process "UIDL")
(let ((start vm-pop-read-point)
n uidl)
(catch 'done
(goto-char start)
(while (not (re-search-forward "^\\.\r\n\\|^-ERR .*$" nil 0))
(beginning-of-line)
;; save-excursion doesn't work right
(let ((opoint (point)))
(vm-pop-check-connection process)
(accept-process-output process)
(goto-char opoint)))
(setq vm-pop-read-point (point-marker))
(goto-char start)
;; no uidl support, bail.
(if (not (looking-at "\\+OK"))
(throw 'done nil))
(forward-line 1)
(while (not (eq (char-after (point)) ?.))
;; not loking at a number, bail.
(if (not (looking-at "[0-9]"))
(throw 'done nil))
(setq n (int-to-string (read (current-buffer))))
(skip-chars-forward " ")
(setq start (point))
(skip-chars-forward "\041-\176")
;; no tag after the message number, bail.
(if (= start (point))
(throw 'done nil))
(setq uidl (buffer-substring start (point)))
(set (intern uidl there) n)
(forward-line 1))
there )))))
(defun vm-pop-get-synchronization-data ()
(let ((here (make-vector 67 0))
(there (vm-pop-get-uidl-data))
(process (vm-folder-pop-process))
retrieve-list expunge-list
mp)
(setq mp vm-message-list)
(while mp
(if (null (vm-pop-uidl-of (car mp)))
nil
(set (intern (vm-pop-uidl-of (car mp)) here) (car mp))
(if (not (boundp (intern (vm-pop-uidl-of (car mp)) there)))
(setq expunge-list (cons (car mp) expunge-list))))
(setq mp (cdr mp)))
(mapatoms (function
(lambda (sym)
(if (and (not (boundp (intern (symbol-name sym) here)))
(not (assoc (symbol-name sym)
vm-pop-retrieved-messages)))
(setq retrieve-list (cons
(cons (symbol-name sym)
(symbol-value sym))
retrieve-list)))))
there)
(list retrieve-list expunge-list)))
;;;###autoload
(defun* vm-pop-synchronize-folder (&optional
&key (interactive nil)
(do-remote-expunges nil)
(do-local-expunges nil)
(do-retrieves nil))
(if (and do-retrieves vm-block-new-mail)
(error "Can't get new mail until you save this folder."))
(if (or vm-global-block-new-mail
(null (vm-establish-new-folder-pop-session interactive)))
nil
(if do-retrieves
(vm-assimilate-new-messages))
(let* ((sync-data (vm-pop-get-synchronization-data))
(retrieve-list (car sync-data))
(local-expunge-list (nth 1 sync-data))
(process (vm-folder-pop-process))
(n 1)
(statblob nil)
(popdrop (vm-folder-pop-maildrop-spec))
(safe-popdrop (or (vm-pop-find-name-for-spec popdrop)
(vm-safe-popdrop-string popdrop)))
r-list mp got-some message-size
(folder-buffer (current-buffer)))
(if (and do-retrieves retrieve-list)
(save-excursion
(vm-save-restriction
(widen)
(goto-char (point-max))
(condition-case error-data
(save-excursion
(set-buffer (process-buffer process))
(setq statblob (vm-pop-start-status-timer))
(vm-set-pop-stat-x-box statblob safe-popdrop)
(vm-set-pop-stat-x-maxmsg statblob
(length retrieve-list))
(setq r-list retrieve-list)
(while r-list
(vm-set-pop-stat-x-currmsg statblob n)
(vm-pop-send-command process (format "LIST %s"
(cdr (car r-list))))
(setq message-size (vm-pop-read-list-response process))
(vm-set-pop-stat-x-need statblob message-size)
(vm-pop-send-command process
(format "RETR %s"
(cdr (car r-list))))
(and (null (vm-pop-read-response process))
(error "server didn't say +OK to RETR %s command"
(cdr (car r-list))))
(vm-pop-retrieve-to-target process folder-buffer
statblob)
(setq r-list (cdr r-list)
n (1+ n))))
(error
(vm-warn 0 2 "Retrieval from %s signaled: %s" safe-popdrop
error-data))
(quit
(vm-inform 0 "Quit received during retrieval from %s"
safe-popdrop)))
(and statblob (vm-pop-stop-status-timer statblob))
;; to make the "Mail" indicator go away
(setq vm-spooled-mail-waiting nil)
(intern (buffer-name) vm-buffers-needing-display-update)
(vm-update-summary-and-mode-line)
(setq mp (vm-assimilate-new-messages :read-attributes nil))
(setq got-some mp)
(if got-some
(vm-increment vm-modification-counter))
(setq r-list retrieve-list)
(while mp
(vm-set-pop-uidl-of (car mp) (car (car r-list)))
(vm-set-stuff-flag-of (car mp) t)
(setq mp (cdr mp)
r-list (cdr r-list))))))
(if do-local-expunges
(vm-expunge-folder :quiet t :just-these-messages local-expunge-list))
(if (and do-remote-expunges
vm-pop-messages-to-expunge)
(let ((process (vm-folder-pop-process)))
;; POP servers usually allow only one remote accessor
;; at a time vm-expunge-pop-messages will set up its
;; own connection so we get out of its way by closing
;; our connection.
(if (and (processp process)
(memq (process-status process) '(open run)))
(vm-pop-end-session process))
(setq vm-pop-retrieved-messages
(mapcar (function (lambda (x) (list x popdrop 'uidl)))
vm-pop-messages-to-expunge))
(vm-expunge-pop-messages)
;; Any messages that could not be expunged will be
;; remembered for future
(setq vm-pop-messages-to-expunge
(mapcar (function (lambda (x) (car x)))
vm-pop-retrieved-messages))))
got-some)))
;;;###autoload
(defun vm-pop-folder-check-mail (&optional interactive)
"Check if there is new mail on the POP server for the current POP
folder.
Optional argument INTERACTIVE says whether this function is being
called from an interactive use of a command."
(if (or vm-global-block-new-mail
(null (vm-establish-new-folder-pop-session interactive)))
nil
(let ((result (car (vm-pop-get-synchronization-data))))
(vm-pop-end-session (vm-folder-pop-process))
result )))
(defalias 'vm-pop-folder-check-for-mail 'vm-pop-folder-check-mail)
(make-obsolete 'vm-pop-folder-check-for-mail
'vm-pop-folder-check-mail "8.2.0")
;;;###autoload
(defun vm-pop-find-spec-for-name (name)
"Returns the full maildrop specification of a short name NAME."
(let ((list vm-pop-folder-alist)
(done nil))
(while (and (not done) list)
(if (equal name (nth 1 (car list)))
(setq done t)
(setq list (cdr list))))
(and list (car (car list)))))
;;;###autoload
(defun vm-pop-find-name-for-spec (spec)
"Returns the short name of a POP maildrop specification SPEC."
(let ((list vm-pop-folder-alist)
(done nil))
(while (and (not done) list)
(if (equal spec (car (car list)))
(setq done t)
(setq list (cdr list))))
(and list (nth 1 (car list)))))
;;;###autoload
(defun vm-pop-find-name-for-buffer (buffer)
(let ((list vm-pop-folder-alist)
(done nil))
(while (and (not done) list)
(if (eq buffer (vm-get-file-buffer (vm-pop-make-filename-for-spec
(car (car list)))))
(setq done t)
(setq list (cdr list))))
(and list (nth 1 (car list)))))
;;;###autoload
(defun vm-pop-make-filename-for-spec (spec &optional scrub-password scrub-spec)
"Returns a cache file name appropriate for the POP maildrop
specification SPEC."
(let (md5 list)
(if (and (null scrub-password) (null scrub-spec))
nil
(setq list (vm-pop-parse-spec-to-list spec))
(setcar (vm-last list) "*") ; scrub password
(if scrub-spec
(progn
(cond ((= (length list) 6)
(setcar list "pop") ; standardise protocol name
(setcar (nthcdr 2 list) "*") ; scrub port number
(setcar (nthcdr 3 list) "*")) ; scrub auth method
(t
(setq list (cons "pop" list))
(setcar (nthcdr 2 list) "*")
(setcar (nthcdr 3 list) "*")))))
(setq spec (mapconcat (function identity) list ":")))
(setq md5 (vm-md5-string spec))
(expand-file-name (concat "pop-cache-" md5)
(or vm-pop-folder-cache-directory
vm-folder-directory
(getenv "HOME")))))
(defun vm-pop-parse-spec-to-list (spec)
(if (string-match "\\(pop\\|pop-ssh\\|pop-ssl\\)" spec)
(vm-parse spec "\\([^:]+\\):?" 1 5)
(vm-parse spec "\\([^:]+\\):?" 1 4)))
(defun vm-pop-start-bug-report ()
"Begin to compose a bug report for POP support functionality."
(interactive)
(vm-follow-summary-cursor)
(vm-select-folder-buffer-and-validate 0 (vm-interactive-p))
(setq vm-kept-pop-buffers nil)
(setq vm-pop-keep-trace-buffer 20))
(defun vm-pop-submit-bug-report ()
"Submit a bug report for VM's POP support functionality.
It is necessary to run vm-pop-start-bug-report before the problem
occurrence and this command after the problem occurrence, in
order to capture the trace of POP sessions during the occurrence."
(interactive)
(vm-follow-summary-cursor)
(vm-select-folder-buffer-and-validate 0 (vm-interactive-p))
(if (or vm-pop-keep-trace-buffer
(y-or-n-p "Did you run vm-pop-start-bug-report earlier? "))
(vm-inform 5 "Thank you. Preparing the bug report... ")
(vm-inform 1 "Consider running vm-pop-start-bug-report before the problem occurrence"))
(let ((process (vm-folder-pop-process)))
(if process
(vm-pop-end-session process)))
(let ((trace-buffer-hook
(lambda ()
(let ((bufs vm-kept-pop-buffers)
buf)
(insert "\n\n")
(insert "POP Trace buffers - most recent first\n\n")
(while bufs
(setq buf (car bufs))
(insert "----")
(insert (format "%s" buf))
(insert "----------\n")
(insert (save-excursion
(set-buffer buf)
(buffer-string)))
(setq bufs (cdr bufs)))
(insert "--------------------------------------------------\n"))
)))
(vm-submit-bug-report nil (list trace-buffer-hook))
))
(defun vm-pop-set-default-attributes (m)
(vm-set-headers-to-be-retrieved-of m nil)
(vm-set-body-to-be-retrieved-of m nil)
(vm-set-body-to-be-discarded-of m nil))
;;; vm-pop.el ends here
|