forked from kazu-yamamoto/Mew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path00changes.2
2008 lines (1714 loc) · 61.2 KB
/
00changes.2
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
<Change Log>
Mew 2.1 (2001/11/01)
Mew 2.1 release candidate 3 (2001/10/30)
* Setting 0.05 instead of 0.01 for mew-smtp-command-content.
This maybe rescue XEmacs.
Tatsuya Kinoshita <tats>
* Biding buffer-file-coding-system to prevent the side effect.
* Adding the "-l" option for mew-prog-vgrep.
* Ensuring that richtech-mode is disabled.
* Setting max-mini-window-height to 1 in mew-summary-pipe-message.
* Taking care of EXPIRED PGP keys.
* Using mew-mule3.el even if Emacs is executed with the --unibyte
option.
Mew 2.1 release candidate 2 (2001/10/26)
* gifsicle support to prevent XEmacs from dying.
Hideyuki SHIRAI <shirai>
* Text/Xml support for mew-summary-execute-base.
Hideyuki SHIRAI <shirai>
* Handling 'quit in sort and pack.
* A patch for refile learning.
Yoshinari Nomura <nom>
* Fixing a bug that XEmacs dies when encoding GIF.
Hideyuki SHIRAI <shirai>
* Edit again for qmail.
Fumio Kaiyama <akmac>
* Bug fixes for privacy services in drafts.
* Limit for re-search-foward in mew-text/xml-detect-cs etc.
Hideyuki SHIRAI <shirai>
Mew 2.1 release candidate 1 (2001/10/24)
* mew-auto-flush-queue works for mbox.
* Workaround for mew-image-inline-p on Emacs 21.1.
* Implementing mew-text/html-detect-cs and mew-text/xml-detect-cs.
Hideyuki SHIRAI <shirai>
* Process status is well displayed on the mode line.
* A bug fix for mew-demo-picture.
NABEYA Kenichi <nabeken>
* Defining mew-use-charset-sanity-check.
* A patch for refile.
Tatsuya Kinoshita <tats>
* mew-input-folders hack.
Tatsuya Kinoshita <tats>
* Defining mew-syntax-treat-filename-function.
Tatsuya Kinoshita <tats>
* Defining mew-input-draft-buffer.
Hideyuki SHIRAI <shirai>
* No sanity check if charset is specified.
Hideyuki SHIRAI <shirai>
* C-cC-i for mew-summary-find-file.
Mew 2.0.60 (2001/10/15) mew-dist release
* Enhancing mew-param-analyze-broken to remove white spaces between
encoded-words.
* recenter for mew-summary-down.
* "c" for mew-summary-copy.
* Allowing the 'X' mark for +mdrop.
* A bug fix for 'invisible.
* "?" for mew-input-map.
Tak Ota <Takaaki.Ota>
* Allowing multiple SPCs on POP sessions.
Tatsuya Kinoshita <tats>
Mew 2.0.59 (2001/10/12) mew-dist release
* A bug fix for Multipart/Alternative.
* Removing mew-summary-display-raw-header.
* Use the "--decrypt" option instead of "--verify" for GnuPG.
* Some "mew-pop-to-buffer" patches.
Hideyuki SHIRAI <shirai>
* Defining mew-regex-ignore-folders.
* Removing mew-sort-debug and mew-pack-debug. Using (mew-debug 'sort)
and (mew-debug 'pack) instead.
* A bug fix for folded quoted strings.
* Defining mew-summary-message-number2.
* A bug fix for PGP encryption.
* Integrating "," and "C-cC-u". Use "," only.
* Removing mew-pop-to-buffer.
* Using mew-current-get-* as little as possible.
Mew 2.0.58 (2001/10/10) mew-dist release
* The "Type 'T'" message displayed only when the top level is
truncated.
* ".txt" suffix for dummy file names.
* 't' in attach to toggle text/binary.
* Defining mew-ask-fcc.
* "Y" for mew-summary-cite.
Mew 2.0.57 (2001/10/04) mew-dist release
* XML support.
* mew-mime-content-type hack.
* A patch for contrib/mew-caesar.el.
Hideyuki SHIRAI <shirai>
* mew-summary-kill-subprocess() now calls mew-pop-tear-down().
Hideyuki SHIRAI <shirai>
* Supporting .htm as well as .html.
Hideaki MORINAKA <Hideaki.Morinaka>
Mew 2.0.56 (2001/10/03) mew-dist release
* mew-summary-folder-cache-save() now includes mew-touch-folder().
* A bug fix for non-UIDL POP servers.
* Unlimiting mew-header-max-depth for mew-scan-form-mark().
* Touching folders when 'mdrop.
* mew-set-environment() moved after loading mew-rc-file.
Kyotaro HORIGUCHI <horiguchi.kyotaro>
Mew 2.0.55 (2001/10/01) mew-dist release
* A bug fix for file mode of manuals.
* Code clean up for refile.
* A bug fix for mew-regex-id.
* Removing mew-folder-remotep.
* +mdrop finally.
* mew-time-diff.
KOIE Hidetaka <hide>
* If a number N is set to mew-pop-delete, it means to keep message
on the POP server for N days.
INOUE Tomohiro <tinoue>
Hideyuki SHIRAI <shirai>
* A bug fix for mew-folder-check.
Hideyuki SHIRAI <shirai>
* A bug fix for mew-substring.
* A bug fix for mew-summary-sort.
* A bug fix for mark handling of mew-summary-refile.
* Fixing the problem of ":" vs "y" and/or "C-cC-l".
Mew 2.0.54 (2001/09/17) mew-dist release
* Defining mew-warning-field-level.
* Bug fixes for mew-pop-info-name and mew-smtp-info-name.
* completion-ignore-case hack in draft for mouse clicking.
Hideyuki SHIRAI <shirai>
* Highlighting a body when reediting.
* Re-writing mew-summary-sort.
* C-u# now asks a printer name.
* A bug fix for mew-header-fold-region.
* Removing the last "," of enum in pattern.c.
Wataru Saito <wataru>
* The "-f" option for "test" instead of the "-e" otpion in Makefile.
kuwa
Mew 2.0.53 (2001/09/10) mew-dist release
* mewls bug fix for sort.
KAMEI Ken-ichi <mule>
* Sort and pack doesn't call mew-scan. Just arrange Summary cache.
* Preserving all marks when scanning.
* Enhancing thread architecture.
Hideyuki SHIRAI <shirai>
* Defining mew-input-language-name.
* A bug fix for mew-input-address.
* Removing unnecessary code from mew-summary-sort.
Tatsuya Kinoshita <tats>
Mew 2.0.52 (2001/09/05) mew-dist release
* "I" inserted a line in a underline overlay. So, underline was put
onto two lines. This bug has been fixed.
* A bug fix for mew-alias-expand-addrs.
* A bug fix for mew-input-address.
* Bug fixes for "(" and ")" again.
NINOMIYA Hideyuki <nin>
* The "-a" option for contrib/incdir.
Yasunari Momoi <momo>
"YAMAZAKI Noriyuki" <zaki>
* A patch for contrib/mew-fancy-summary.el.
Hideyuki SHIRAI <shirai>
* Some defcustom hack.
Hideyuki SHIRAI <shirai>
Mew 2.0.51 (2001/08/31) mew-dist release
* Info updates.
* Some defcustom hack.
Hideyuki SHIRAI <shirai>
* Binary parts of a truncated message should not be decoded.
* Now "Too large, truncated" message is displayed in the minibuffer.
* Check the size from X-Mew-Uidl: carefully.
* Addrbook now can contain group:; notation. It can be expand unless
it recurses.
* mew-summary-ls calles mew-mark-clean only when called interactively.
* C-cC-o inserts X-Mailer: in the last.
Tatsuya Kinoshita <tats>
* Ask Subject: before "Really send this message? ".
Koga Youichirou <y-koga>
* 't' in mew-scan-form now means the position of thread indentation.
"Takashi P.KATOH" <p-katoh>
* X-Mailer: now locates just above mew-header-separator.
* insert-file-contents changes buffer-file-coding-system. ","
is sacrificed and lpr-buffer goes wrong. mew-insert-message
now preserves buffer-file-coding-system.
* Workaround for a broken POP server which doesn't display UID after
a message number.
* X-Mailer: for Bcc:.
* Bug fixes for mew-case-guess-when-composed.
Tatsuya Kinoshita <tats>
* Bug fixes for "(" and ")".
NINOMIYA Hideyuki <nin>
Mew 2.0.50 (2001/08/14) mew-dist release
* info and doc updates.
* mew-summary-sort: some bugs related to region are fixed.
Tatsuya Kinoshita <tats>
* mew-substring in mew-mule3.el: length of mew-error-broken-string to
width.
SAITO Atsunori <sai>
* Defining mew-ask-mark-process. The default is nil.
* Supporting sort region. (C-uS)
"Takashi P.KATOH" <p-katoh>
* mew-encode-remove-illegal-fields has a bug which removes
Subject: whose first line is null and whose second one
has a value. This bug was fixed.
* Setting mode of files under ~/Mail to mew-file-mode.
* A bug fix for mew-case-guess-when-composed.
Tatsuya Kinoshita <tats>
* The "-l" option for "grep".
"David A. Panariti" <davep>
* Inserting X-Mew-UIDL: at the beginning of a mail.
* mew-multibyte-string-p and multibyte hack.
Hideyuki SHIRAI <shirai>
Mew 2.0 stable (2001/07/26) mew-release release
* info updates.
* Defining mew-set-language-environment-coding-systems to avoid
the side effect of set-language-environment-coding-systems.
* A bug fix form mew-mime-text/html.
* A bug fix for mew-summary-auto-refile.
* Rescue the SMTP sentinel.
* mew-thread-only for "to".
* the -man style of bin/{mewencode,mewls}.1.
Shun-ichi GOTO <gotoh>
Mew 2.0 pre4 (2001/07/22) mew-dist release
* mew-refile-guess-by-folder prefers the entire folder to ml name.
* save-excursion hack for mew-mime.el.
* Unifying a region of Summary mode.
See mew-summary-region-include-cursor-line.
Hideyuki SHIRAI <shirai>
* "postnum" for x-sequence:
* A bug fix for mew-sort-number.
Hideyuki SHIRAI <shirai>
* "n" works for mew-summary-ls in the case that the scan form is old.
* Defining mew-input-grep-pattern.
* Adding key-bindings for [delete].
* A bug fix for mew-addrbook-clean-up.
Tak Ota <Takaaki.Ota>
* PWD for Makefiles to same Emacsen on Windows.
Motohiko Minakuchi <zxcv>
Mew 2.0 pre3 (2001/07/16) mew-dist release
* info updates.
* Defining mew-mime-text/plain-ext. And charset hack.
Mew 2.0 pre2 (2001/07/13) mew-dist release
* info updates.
* Forcing re-scan if the format of summary cache is old.
* "tu" for mew-thread-unmark.
Hideyuki SHIRAI <shirai>
* A bug fix for mew-addrbook-override-by-newone.
NABEYA Kenichi <nabeken>.
* contrib/mew-fancy-summary.el.
Hideyuki SHIRAI <shirai>
* A patch for contrib/mew-nmz.el.
Hideyuki SHIRAI <shirai>
* highlight-body for mew-summary-convert-local-cs.
Mew 2.0 pre1 (2001/07/08) mew-dist release
* info updates.
* A patch for Makefile.w32.
Shuichi KITAGUCHI <kit>
* save-match-data for mew-draft-dynamic-highlight.
Hideyuki SHIRAI <shirai>
* CDP: bug fixes.
* A bug fix of CDP: for S/MIME
Ryutaroh Matsumoto <ryutaroh>
* A bug fix for "h" on Summary.
* "to"!
1.95b126 (2001/06/21) mew-dist release
* Enhancing mew-reply-regex.
Tatsuya Kinoshita <tats>
* Setting scan form for "I" and Biff.
* A users now can do MIIME stuff for the body!
* A bug fix for mew-header-p(). This enbuged on
mew-draft-dynamic-highlight().
* A bug fix for reediting multipart on +draft.
Tatsuya Kinoshita <tats>
* A bug fix for mew-draft-dynamic-highlight.
Hideyuki SHIRAI <shirai>
* Removing mew-color-p.
Shun-ichi TAHARA <jado>
* A patch for bin/w32/dirent.c.
Shuichi KITAGUCHI <ki>
* bin/w32/*
Shuichi KITAGUCHI <ki>
* Defining mew-cite-strings-function.
Tatsuya Kinoshita <tats>
* Adding ":" to mew-regex-url.
NINOMIYA Hideyuki <nin>
* A bug fix for mew-summary-mark-region.
Tatsuya Kinoshita <tats>
Hideyuki SHIRAI <shirai>
* In-Reply-To is preferred for thread only if it contains one value.
* mew-addrstr-parse-syntax-list ignores empty address "<>".
Tatsuya Kinoshita <tats>
* A bug fix for mew-encode-remove-illegal-fields.
Shun-ichi GOTO <gotoh>
* mew-ask-flush-case.
KOIE Hidetaka <hide>
* A bug fix for undo on drafts.
* A bug fix for mew-pgp-verify.
* Saving .mew-folder-{list,alist} when new folder is created.
* set-buffer the original buffer in mew-summary-display.
Hideyuki SHIRAI <shirai>
* A bug fix for the problem of "," vs raw-header.
Hideyuki SHIRAI <shirai>
* A bug fix for mew-header-combine-field.
* after-change-functions for dynamic header highlight
KAMEI Ken-ichi <mule>
1.95b125 (2001/05/31) mew-dist release
* PGP key fetch!
* SMTP bug fix for locking.
* New mew-from.
Tatsuya Kinoshita <tats>
* RFC 2822 compliance.
* add-hook for local-write-file-hooks.
Shun-ichi TAHARA <jado>
1.95b124 (2001/05/29) mew-dist release
* "S" and "O" can't be used in +draft.
* Defining mew-user, mew-name, mew-mail-domain.
* Multipart can revive in +draft.
* "case" can revive in +draft and +queue.
* mew-addrbook-alias-add does not register alias for a null user.
* "make" makes in the bin directory.
* Some mew-config-* -> mew-case-*.
* Guessing case when reediting normal messages.
Tatsuya Kinoshita <tats>
* Defining mew-content-type.
* Making cases unique.
Tatsuya Kinoshita <tats>
* jit-lock for thread.
Hideyuki SHIRAI <shirai>
1.95b123 (2001/05/24) mew-dist release
* Defining mew-draft-mode-reedit-queue-hook.
Tatsuya Kinoshita <tats>
* Inputting RET for C-uP and C-uN changes the mark to the default.
NINOMIYA Hideyuki <nin>
* Defining mew-config-guess-addition.
Tatsuya Kinoshita <tats>
* signature is selectives by cases.
KOSUGE Takuya <kosuge>
* A bug fix for NetNews folders.
* Using jit-lock on Emacs 21.
* Defining mew-face-eof-{message,part}.
* Defining mew-insert-final-newline due to the bug of narrow-to-region
on Emacs 20 and XEmacs. ^L can't be broken.
* "E" works for RFC822 messages.
* mew-news-path is passed to mewls.
* mew-cc and mew-dcc uses mew-mail-address() if it is 'me.
SUGIMORI <taro>
* A patch for mew-summary-retrieve-message().
Makoto Kohno <kohno>
* A patch for contrib/mew-browse.el.
Shuichi KITAGUCHI <ki>
* Lovely hack for mew-config-guess-when-composed. Now a user can
watch a header when modified.
Tatsuya Kinoshita <tats>
* Thread key-bindings are now reset. They all have the prefix "t".
* C-uP and C-uN set mew-mark-walk.
* Adding .dll.
Tak Ota <Takaaki.Ota>
* A bug fix for mew-config-guess-when-replied.
Tatsuya Kinoshita <tats>
1.95b122 (2001/05/09) mew-dist release
* Big5 for XEmacs.
* Fixing infinite loop of mew-summary-setup-mode-line().
* Defining mew-config-guess-when-{replied,prepared,composed}
* Keep modified for mew-draft-rehighlight().
Hideyuki SHIRAI <shirai>
* Bug fix of reedit for a message whose first part is not text.
* Clarify "case" for reedit.
* Removing sit-for.
* Getting mew-param-analyze-broken() back to the old logic.
* mew-theme-file hack.
FUKANO Akihiro <fukano>
* C-uC-cC-e now prepares a default value for CT:.
* Fixing the last range for mewls.
Yoshiaki Kasahara <kasahara>
* MS Office patch.
Hideyuki SHIRAI <shirai>
1.95b121 (2001/04/24) mew-dist release
* Merging wvHtml for WORD files.
* Making execute-external safer.
Hideyuki SHIRAI <shirai>
* A bug fix for mew-win32.el.
Hideyuki SHIRAI <shirai>
1.95b120 (2001/04/24) mew-dist release
* C-cC-e is now executable on a message.
* A bug fix for ".".
Tatsuya Kinoshita <tatsuyak>
* A bug fix for "h" in Message mode.
Hideyuki SHIRAI <shirai>
* A patch for text/html2.
Hideyuki SHIRAI <shirai>
* Supporting ks_c_5601-1987.
* C-uC-cC-y asks you arguments of the specified commands.
* New API for mime-content-type.
* mew-{front,rear}-{,non}sticky handle only text.
* Defining mew-mime-external-body-list.
* Singlepart body with unknown CTE: is now treated as a multipart.
* The number of buffer local variables is now as small as possible.
* ":" displays the syntax of a body.
* Defining mew-ct-*p.
* Defining mew-insert-manual.
* mew-summary-execute-command can take args.
Hideyuki SHIRAI <shirai>
* mew-summary-set-config can be used in thread.
SUGIMORI <taro>
* Singleparts in Multipart/Alternative are marked with "*".
* Defining mew-find-longest-match().
* Separating warning and info.
1.95b119 (2001/04/09) mew-dist release
* Raw text strings in parameters are decoded before splited with ";".
* ":" for mew-summary-analyze-again-alternative.
* Defining mew-use-alternative.
* mew-face-header-date.
Takashi SATOH <satoh>
* C-cC-y for mew-summary-execute-command.
* "ml2" for sorting.
Kentaro Inagaki <inagaki>
1.95b118 (2001/04/03) mew-dist release
* Load mew-theme-file if non-nil.
Hideyuki SHIRAI <shirai>
* Defining mew-syntax-get-entry-by-cid for mew-w3m.el.
* Supporting Multipart/Alternative. See mew-mime-multipart-alternative-list.
* Putting face except line delimiters.
Hideyuki SHIRAI <shirai>
* s/cite3/cite5/ in mew-theme.el.
Takashi SATOH <satoh>
1.95b117 (2001/04/01) mew-dist release
* Try to send a message even if smtp-auth is t and a server does not
support SMTP AUTH.
* Defining mew-mime-content-disposition. Obsoleting
mew-content-disposition-inline-list and mew-mime-content-type-ignore-cdp.
* Creating mew-theme.el.
* Try to decode even if a message is truncated.
1.95b116 (2001/03/29) mew-dist release
* last:N is supported for range.
* Setting mew-addrbook-orig-alist with unquoted strings when
C-uC-cC-a.
SUGIMORI <taro>
* A bug fix for Bcc: vs +backup.
* Sender: is now decided when the message is sent.
* A patch for contrib/mew-summary-hl.el.
Hideyuki SHIRAI <shirai>
* Using delete-windows-on so that scrambled drafts are not displayed.
* Removing bold from the comment face.
Shun-ichi TAHARA <jado>
* defface -> faces group.
Ryutaroh Matsumoto <ryutaroh>
1.95b115 (2001/03/20) mew-dist release
* Using defface. Now three kinds of colors, TTY, bright-background,
dark-background can be defined.
* A bug fix for X-Face:.
* A bug fix for "." of end-of-*
* Overriding smtp-auth, smtp-auth-list, smtp-user, smtp-helo-domain
when sending a message in +queue.
1.95b114 (2001/03/18) mew-dist release
* mewencode.1 and mewls.1
* Ensuring downcase of shortname in Addrbook.
* contrib/mew-nmz-fixer.el.
Hideyuki SHIRAI <shirai>
* CID: hack.
Hideyuki SHIRAI <shirai>
* A color patch for Emacs 21.
1.95b113 (2001/03/13) mew-dist release
* Colors are available on Emacs21/XEmacs with the -nw option.
* M-a -> mew-summary-addrbook-edit.
* Fixing duplicated entries buf of mew-summary-addrbook-add.
* SMTP bug fix.
* SAMBA support.
1.95b112 (2001/03/04) mew-dist release
* Defining mew-touch-folder-check-enabled-p.
Tatsuya Kinoshita <tatsuyak>
* A bug fix of mouse-face.
* defcustom hack.
Ryutaroh Matsumoto <ryutaroh>
* S/MIME patches.
Ryutaroh Matsumoto <ryutaroh>
1.95b111 (2001/03/03) mew-dist release
* Enabling case for mew-summary-send-message.
Tatsuya Kinoshita <tatsuyak>
* mew-blinfo.
* Fixing Bcc: bugs.
* mew-mark-{put,delete}-here use insert-and-inherit() instead of
insert() to inherit highlight.
* mew-scan-insert-line checks mew-use-highlight-mark.
* Removing mew-range-{auto,interactive}-alist.
* Hack for queue folders.
* Patches for contrib/mew-summary-hl.el.
Hideyuki SHIRAI <shirai>
Shun-ichi TAHARA <jado>
* A patch for mew-fancy-highlight-body-setup.
Hideyuki SHIRAI <shirai>
1.95b110 (2001/03/01) mew-dist release
* A patch for body property.
KAMEI Ken-ichi <mule>
* Enabling C-cC-e on Emacs 21.
Hideyuki SHIRAI <shirai>
* You can now specifies "queue-folder" in mew-config-alist.
* C-cC-c in Summary mode flushes messages in this queue folder or
the default queue folder.
* A patch for mew-thread-indent-propery.
Hideyuki SHIRAI <shirai>
* New contrib/mew-summary-hl.el.
Hideyuki SHIRAI <shirai>
* A patch for fancy highlight.
Hideyuki SHIRAI <shirai>
1.95b109 (2001/02/25 Happy Birthday!) mew-dist release
* Defining mew-highlight-body-max-size.
* Highlighting non-MIME messages.
* Integrating fancy highlight body. Set mew-use-fancy-highlight-body.
Hideyuki SHIRAI <shirai>
* See if current-language-environment is bound.
1.95b108 (2001/02/22) mew-dist release
* Supporting OpenSSH 2.5.
Shun-ichi GOTO <gotoh>
* mew-lang-jp.el hack.
Shun-ichi TAHARA <jado>
* paragraph-start hack for Draft mode.
Shun-ichi GOTO <gotoh>
SUGIMORI <taro>
* mew-use-highlight-{body,url}.
Tatsuya Kinoshita <tatsuyak>
1.95b107 (2001/02/21) mew-dist release
* Flushing caches when 'x'.
* Fixing the bug of X-Mew:.
* when/unless are now allowed.
* Highlighting text/plain in message caches for Message mode.
* Highlighting citation only in Draft mode.
* Fixing the +++inbox problem.
Hideyuki SHIRAI <shirai>
* Fixing the problem of auto-refile in the case
mew-use-thread-separator is used.
Hideyuki SHIRAI <shirai>
* S/MIME patch.
Ryutaroh Matsumoto <ryutaroh>
* defcustom patch
Ryutaroh Matsumoto <ryutaroh>
* mew-buffer-message for gnuclient
Yoshiaki Kasahara <kasahara>
1.95b106 (2001/02/17) mew-dist release
* Don't window-scroll-functions to highlight Message/Draft.
* Defining mew-use-highlight-{header,body,mark,url}
* A bug fix for deleting multipart in the attachments.
1.95b105 (2001/02/15) mew-dist release
* Fixing a fatal bug of mew-highlight-body-region.
* No highlighting if window-system is nil.
* A patch for contrib/mew-nmz.el.
Hideyuki SHIRAI <shirai>
1.95b104 (2001/02/15) mew-dist release
* Preemptive SMTP sending.
KOIE Hidetaka <hide>
* Defining mew-summary-cook-function.
Hideyuki SHIRAI <shirai>
* Enabling auto-refile in thread folders.
Hideyuki SHIRAI <shirai>
* xemacs-codename hack.
Hiromichi Kawachi <kawachi>
* A patch for contrib/mew-nmz.el.
Hideyuki SHIRAI <shirai>
* A patch for mew-summary-up.
Hideyuki SHIRAI <shirai>
* A patch for mew-was-regex.
Tatsuya Kinoshita <tatsuyak>
* Sophisticating buffer management.
* Obsoleting mew-set-buffer-tmp. (But it is left.)
1.95b103 (2001/02/10) mew-dist release
* Concatenating folders gussed by C-uo with ",".
KOIE Hidetaka <hide>
* Defining mew-summary-mark-undo-all again.
Hideyuki SHIRAI <shirai>
* mew-dir-messages to make directory-files faster.
* A bug fix for mew-summary-search-mark.
Hideyuki SHIRAI <shirai>
* A patch for mew-draft-header.
Tatsuya Kinoshita <tatsuyak>
* contrib/mew-gnus.el.
SAKAI Kiyotaka <ksakai>
1.95b102 (2001/02/06) mew-dist release
* "k" to delete sub-thread.
* A patch for mew-refile-view-unmark.
Hideyuki SHIRAI <shirai>
* A bug fixing of Fcc (after SMTP).
* Improving consistency of marks between Summary and Virtual.
i.e. "U", "ma", "mr"
* Obsoleting "mu". This is trade-off for thread(Virtual).
* Removing mew-remote-folder-cache-delete. (This was not used.)
* A bug fix for burst.
* Removing mew-folder-member. Now mew-folder-insert uses member()
which is much faster.
* delete -> delq.
* mew-mime-text/plain uses buffer-substring instead of
buffer-substring-no-properties because Emacs 21 implements
composite characters as a property.
* Organization: patch.
Tatsuya Kinoshita <tatsuyak>
* Error handling for Q-encoding.
* "?" for thread folder and "/" for Virtual mode.
Hideyuki SHIRAI <shirai>
* A bug fix for mew-pop-biff-setup.
NINOMIYA Hideyuki <nin>
1.95b101 (2001/01/29) mew-dist release
* E on +draft configures the window.
* Defining mew-pop-sentinel-non-biff-hook.
* mew-summary-search-mark hack.
Hideyuki SHIRAI <shirai>
* A bug fix for mew-summary-exchange-mark in Virtual mode.
* A bug fix for mew-attach-next.
* condition-case for write-region in POP sessions.
* mew-pop-check.
NINOMIYA Hideyuki <nin>
* mew-pop-biff-function.
Tak Ota <Takaaki.Ota>
* mew-pop-biff-setup disables the timer if mew-use-biff is nil.
* Cleaning up mew-env.el.
1.95b100 (2001/01/25) mew-dist release
* Biff can bark for POP servers which don't support UIDL.
* E on +draft switches a buffer of +draft/n if exists.
* buffer-disable-undo to save resources.
Hideyuki SHIRAI <shirai>
* A minor fix for defcustom.
OHARA Shigeki <os>
* Adding mew-thread-display-hook.
Hideyuki SHIRAI <shirai>
* Workaround for the "biff vs password" problem.
* Some enhancements for invisibility.
* SMTP status hack. (RFC 1893)
Tatsuya Kinoshita <tatsuyak>
1.95b99 (2001/01/18) mew-dist release
* Don't override {Resent-,}Sender: if exists.
* Using run-at-time and cancel-timer even on XEmacs.
* mew-summary-make-invisible checks existence of buffers and
input-pending.
* copy-list -> copy-sequence.
1.95b98 (2001/01/18) mew-dist release
* C-cC-l now converts MIME-decoded-but-not-charset-converted text.
* Mode line for Summary/Virtual displays "[n more]*" if thread information
is still visible. When the thread information becomes invisible
over the entire buffer, mode line displays "[n more]"
(asterisk disappears).
* A bug fix for "y". A text/plain body was not decoded.
* mew-virtual-cache-valid-p -> mew-thread-cache-valid-p
Hideyuki SHIRAI <shirai>
* Using idle timer for invisible.
* mew-eoh is set by mew-regex-setup.
* C-u i now doesn't flush +queue.
* Sender: hack. Defining mew-use-sender.
* Defining mew-header-mode-hook.
* mew-summary-scan-sentinel-hook -> mew-scan-sentinel-hook.
* mew-summary-inc-sentinel-hook -> mew-pop-sentinel-hook.
* Defining mew-smtp-sentinel-hook.
* Now now we have:
mew-{pop,scan,smtp}-sentinel-hook.
* Biff doesn't put the lifetime of POP password longer.
* Biff doesn't flush +queue.
* Removing mew-sublist.
* "I" now takes care of the current folder.
* New mew-summary-hl.el.
Hideyuki SHIRAI <shirai>
* A patch for contrib/mew-nmz.el.
Hideyuki SHIRAI <shirai>
* Handing the case where an SSH server refuses a connection.
KOIE Hidetaka <hide>
HAYASHI Chifumi <chifumi>
1.95b97 (2001/01/11) mew-dist release
* Workaround of mew-make-postfix-invisible for Emacs 21.
* Detection for POP lock.
* Modeline hack for biff.
1.95b96 (2001/01/10) mew-dist release
* SASL for POP had a side-effect. When receiving a big message, Mew
created a very long string. This bug has been fixed.
* Implementing POP biff. See mew-use-biff and mew-use-biff-bell.
* Flexible mechanism for get/set functions.
* Defining mew-scan-form-size-huge.
Tatsuya Kinoshita <tatsuyak>
Tak Ota <Takaaki.Ota>
1.95b95 (2001/01/06) mew-dist release
* SASL for POP.
* O(N) algorithm for mew-uniq-alist.
* choice for defcustom.
NINOMIYA Hideyuki <nin>
* A fix for mew-win32.el.
Hideyuki SHIRAI <shirai>
1.95b94 (2001/01/04) mew-dist release
* No thread separator on the first line.
NINOMIYA Hideyuki <nin>
* Bug fixes for mew-summary-thread-{up,down}.
* Extending mew-count-lines for mew-use-thread-separator.
* Correct handling for wrong passwords of SMTP AUTH.
* A bug fix for 55-characters-boundary problem of MD 5.
* A bug fix for mew-summary-thread-move-cursor.
Hideyuki SHIRAI <shirai>
* mew-prog-ms*.
Shuichi KITAGUCHI <ki>
1.95b93 (2000/12/28) mew-dist release
* Defining mew-summary-ls-no-scan-hook.
* C-u I and C-u m I are case-ready.
* C-u I and C-u m I now reverse mew-pop-delete.
* Fixing the unsigned char bug of mewls.
* Removing mew-time-cts-*.
* Make mew-pop-body-lines configurable.
* A patch for 'wrap' citation.
Tatsuya Kinoshita <tatsuyak>
* Removing mc-flag.
* Using new macro style for defvar.
* Removing post-conv.
1.95b92 (2000/12/25) mew-dist release
* Workaround for Mew bombs.
* A bug fix for mew-use-8bit.
* base64 stuff for XEmacs 21.1.
NINOMIYA Hideyuki <nin>
* A bug fix for mew-pop-clean-up.
* Fixes for careless mistakes.
NINOMIYA Hideyuki <nin>
HAYASHI Chifumi <chifumi>
1.95b91 (2000/12/23) mew-dist release
* Stopping support for Emacs 19/Mule 2.3.
* Using defalias instead of fset.
* Using replace-match as much as possible.
* Using invisible instead of selective-display.
* Defining mew-scan-form-extract-rule.
mew-scan-form-from-name-only and mew-scan-form-from-addr-only
are now obsoleted.
Shun-ichi TAHARA <jado>
* Defining mew-summary-thread-move-cursor.
Hideyuki SHIRAI <shirai>
* A bug fix for mew-summary-mark-select-thread.
Hideyuki SHIRAI <shirai>
* Defining mew-use-thread-separator.
NINOMIYA Hideyuki <nin>
* Removing defmacro as many as possible.
* Enhancing mew-sort.el.
Hideyuki SHIRAI <shirai>
* Fixing mew-icon-directory.
NINOMIYA Hideyuki <nin>
* Unsigned char fixes for mewencode -g.
Tatsuya Kinoshita <tatsuyak>
* A bug fix for mewencode -g.
Shun-ichi GOTO <gotoh>
1.95b90 (2000/12/15) mew-dist release
* utf-7.
Hideyuki SHIRAI <shirai>
* Implementing "I" and "i".
1.95b89 (2000/12/13) mew-dist release
* Bug fixing and enhancing thread commands.
Hideyuki SHIRAI <shirai>
* mew-mark-tmp -> ?\0.
* Mark soft-coding patch.
Hideyuki SHIRAI <shirai>
Shun-ichi GOTO <gotoh>
* Visualizing thread without recursive function call.
Shun-ichi TAHARA <jado>
* Deleting mew-summary-convert-local-cs2.
* mew-smtp-auth-list can be used in config.
* Ensuring POP's end of session.
* Allowing the case where one boundary is a substring of another
boundary.
* Yet another bug fix for mew-draft-auto-fill.
* Yet another patch for subject-simplify.
Tatsuya Kinoshita <tatsuyak>
1.95b88 (2000/12/12) mew-dist release
* Defining mew-cite-ignore-mouse-region.
* Fixing the mouse-region vs citation problem.
SAKAI Kiyotaka <ksakai>.
* Soft coding mode-name.
KOIE Hidetaka <hide>
* Supporting SASL(PLAIN,LOGIN) as well as CRAM-MD5.
* Defining mew-summary-display-raw-header.
* A patch for subject-simplify.
Tatsuya Kinoshita <tatsuyak>
* A bug fix for mew-draft-auto-fill.
Kenichi Nabeya <nabeken>
* A bug fix for highlight-url.
HAYASAKA Hiromu <hrm>
* mew-thread-only
NINOMIYA Hideyuki <nin>
1.95b87 (2000/12/08) mew-dist release
* Toolbar hack for refile in Virtual mode.
NINOMIYA Hideyuki <nin>
* Making "g" and "C-cC-b" thread-friendly.
* Ignoring marks in Virtual mode when quitting.
KOIE Hidetaka <hide>
* Enabling mew-summary-thread-{parent,child,brother-up,brother-down}
in Summary mode.
Hideyuki SHIRAI <shirai>
1.95b86 (2000/12/08) mew-dist release
* Virtual folders are highlighted by default.
See mew-highlight-mark-folder-type for more information.
* mew-summary-thread-{parent,child,brother-up,brother-down}.
Hideyuki SHIRAI <shirai>
* Fancy threading.
Shun-ichi TAHARA <jado>
* Fixing mew-refile-init. kill-emacs-hook now calls
mew-refile-clean-up.
* Now you can use "o", "!", "mo" in Virtual mode.
1.95b85 (2000/12/06) mew-dist release
* A bug fix for mew-complete.
SAKAI Kiyotaka <ksakai>.
* Catching a error signal in base64-decode-string.
Takuro Horikawa <takuroho>
* mew-scan-get-line extracts the last id from References:.
* "C-cC-g" -> "C-cC-z".
* "," displays a message in the echo area if too large.
KOIE Hidetaka <hide>
* "t" checks mew-summary-buffer-folder-cache-time.
* Disabling mew-mark-afterstep in "mt".
* Exclusive check for mew-summary-thread-region.
* A bug fix for mew-mime-image.
1.95b84 (2000/11/30) mew-dist release
* Thread fixes and profile.
* A patch for mewls.
Tatsuya Kinoshita <tatsuyak>
* A patch for mew-icon-p.
KIM Hyeong Cheol <hkimu-tky>
* Hash size patch.
Shun-ichi GOTO <gotoh>
1.95b83 (2000/11/29) mew-dist release
* regexp-quote for addresses.
Tatsuya Kinoshita <tatsuyak>
* A bug fix for the "-nw" option of Emacs 21.
* mew-{,insert-}buffer-substring.
* Making "t" more convenient.
* A patch for mew-win32.el.
Shuichi KITAGUCHI <ki>
* Summary/Virtual menu patch.
NINOMIYA Hideyuki <nin>
* mewls can display the last line of References:.
* HAVE_POOL for mew.h.
Hideyuki SHIRAI <shirai>
Atsushi Onoe <onoe>
* A patch for mew-cite-strings.
Tatsuya Kinoshita <tatsuyak>
* Removing goto-line.
* Cite label hack. See mew-draft-cite-fill-mode for more information.
KOIE Hidetaka <hide>
Tatsuya Kinoshita <tatsuyak>
* A bug fix for mew-input-comma.
* Defining "h" in Summary mode, debugging "h" in Message mode.
* Backup status files.
1.95b82 (2000/11/27) mew-dist release
* mew-summary-{msg,part} hack.
Hideyuki SHIRAI <shirai>
* Displaying the current message when "t".
KOIE Hidetaka <hide>
* A fix for serious bug of mew-scan-form-from.
* In Summary mode, "** no subject **" is displayed if Subject: is
empty. This is just for threads.
* bin/w32.
Shuichi KITAGUCHI <ki>
* "mt" is for putting the '*' mark on the current thread.
* "mm" is for making thread.
* "^", C-cC-p, C-cC-n to walk thread.
* mew-summary-decode-pgp: C-cC-p -> C-c\C-g.
* mew-folder-clean-up removes virtual folders before saving.
* A patch to mew-refile-view.el.
sen_ml
* "t" in Virtual goes to corresponding physical folder and moves to
the message.
* C-uC-cC-c in Summary flushes the current buffer only.
Tatsuya Kinoshita <tatsuyak>
1.95b81 (2000/11/25) mew-dist release
* Defining mew-thread-column. This value can be set in
mew-scan-form-list, too.
* A bug fix of mew-check-config in Emacs 21.
KIM Hyeong Cheol <hkimu-tky>
Hideyuki SHIRAI <shirai>
* mew-refile-clean-up to avoid saving every time when "x".
* Defining mew-count-lines which counts \n only.
* mew-addrbook-alias-add doesn't overwrite if a target already
exists in Addrbook.
* Setting mew-cs-m17n to ctext-unix to save ^M.
* Removing highlight at unmarking even if the folder is matched to
(mew-highlight-this-folder-p).
* Adding virtual folder to mew-folders-ignore-p.
* A bug fix for deleting comments in Addrbook.
1.95b80 (2000/11/24) mew-dist release
* "t", "C-u t" and "mt" for thread.
1.95b79 (2000/11/22) mew-dist release