-
Notifications
You must be signed in to change notification settings - Fork 13
/
ChangeLog.1
5327 lines (3565 loc) · 166 KB
/
ChangeLog.1
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
2020-08-24 Kazuhiro Ito <[email protected]>
* mime-def.el: Change product name to 'FLIM-LB'.
2020-08-19 Kazuhiro Ito <[email protected]>
Change non-ASCII text files's coding-system to UTF-8
* ChangeLog: Likewise.
* README.ja: Likewise.
* mime-ja.texi: Likewize. Assume LuaTex for typesetting.
* mime-en.texi: Likewise. Assume LuaTex for typesetting, because
this file is partially written in Japanese.
2020-08-05 Naoya Yamashita <[email protected]>
Fix closing parens position (cosmetic change only).
Cf. https://github.com/wanderlust/flim/pull/11
2020-08-03 Naoya Yamashita <[email protected]>
Use ?\s instead of ?(whitespace).
Cf. https://github.com/wanderlust/flim/pull/10
* eword-decode.el (eword-decode-encoded-words): Likewise.
* eword-encode.el (eword-encode-rword-list, ew-encode-rword-1)
(tm-eword::string-to-ruled-words): Likewise.
* mel-q-ccl.el (mel-ccl-decode-quoted-printable-generic)
(mel-ccl-encode-quoted-printable-generic, mel-ccl-decode-q):
Likewise.
* mel-q.el (quoted-printable-internal-encode-region): Likewise.
* mel.el (Q-encoded-text-length): Likewise.
* mime-conf.el (mime-mailcap-look-at-schar): Likewise
* smtp.el (smtp-deduce-address-list): Likewise.
* std11.el (std11-space-char-list): Likewise.
2020-06-26 Kazuhiro Ito <[email protected]>
* std11.el (std11-addr-to-string): Fix typo.
Cf. https://github.com/wanderlust/wanderlust/issues/175
2020-06-14 Kazuhiro Ito <[email protected]>
Minor refactorings.
* eword-decode.el (eword-decode-encoded-words)
(eword-analyze-comment, eword-decode-token): Reduce use of concat
function.
* sasl.el (sasl-unique-id-number-base36): Replace char-to-string
by list for concat function's arguments.
* smtp.el (smtp-send-data): Minor refactoring.
* std11.el (std11-header-string, std11-header-string-except)
(std11-fill-msg-id-list-string): Reduce use of concat function.
(std11-parse-group, std11-addr-to-string): Minor refactorings.
2020-06-05 Kazuhiro Ito <[email protected]>
* FLIM-MK: Assume Emacs 24 or later.
2020-06-03 Kazuhiro Ito <[email protected]>
Use following-char and preceding-char instead of char-after and
char-before for the current point.
* mel-q.el (quoted-printable-internal-encode-region)
(quoted-printable-internal-decode-region): Likewise.
* mime-conf.el (mime-mailcap-skip-comment)
(mime-mailcap-look-at-type-field, mime-mailcap-look-at-schar)
(mime-mailcap-look-at-qchar): Likewise.
* mime-parse.el (mime-decode-parameter-encode-segment)
(mime-divide-extended-parameter, mime-encode-extended-parameter)
(mime-divide-regular-parameter, mime-encode-regular-parameter):
Likewise.
2020-06-02 Kazuhiro Ito <[email protected]>
Strip use of function wrapping lambda.
* eword-encode.el
(eword-encode-Content-Disposition-field-body-broken-mime)
(eword-encode-Content-Type-field-body-broken-mime)
(eword-encode-Content-Disposition-field-body)
(eword-encode-Content-Type-field-body): Likewise.
* mel-q.el (q-encoding-decode-string, q-encoding-encode-string):
Likewise.
* std11.el (std11-full-name-string, std11-addr-to-string):
Likewise.
2020-05-30 Kazuhiro Ito <[email protected]>
* eword-decode.el (eword-decode-encoded-words): Fix cl
dependencies.
* eword-encode.el: Adjust dependencies.
* mel-q.el: Adjust dependencies.
(quoted-printable-internal-decode-region): Use string-to-list
instead of string-to-char-list.
* mel.el: Adjust dependencies.
* mime-parse.el: Adjust dependencies.
* std11.el: Adjust dependencies.
2020-05-23 Kazuhiro Ito <[email protected]>
Use lexical binding.
* eword-decode.el: Likewise.
* eword-encode.el: Likewise.
* hmac-md5.el: Likewise.
* hmac-sha1.el: Likewise.
* luna.el: Likewise.
* lunit.el: Likewise.
* md5.el: Likewise.
* mel-g.el: Likewise.
* mel-q-ccl.el: Likewise.
* mel-q.el: Likewise.
* mel-u.el: Likewise.
* mel.el: Likewise.
* mime-conf.el: Likewise.
* mime-def.el: Likewise.
* mime-parse.el: Likewise.
* mime.el: Likewise.
* mmbuffer.el: Likewise.
* mmcooked.el: Likewise.
* mmexternal.el: Likewise.
* mmgeneric.el: Likewise.
* qmtp.el: Likewise.
* sasl-cram.el: Likewise.
* sasl-digest.el: Likewise.
* sasl-scram.el: Likewise.
* sasl-xoauth2.el: Likewise.
* sasl.el: Likewise.
* sha1.el: Likewise.
* smtp.el: Likewise.
* std11.el: Likewise.
2020-05-23 Kazuhiro Ito <[email protected]>
Support additional SASL mechanism libraries.
* sasl.el (sasl-additional-mechanism-alist): New variable.
(sasl-mechanism-alist): Include entries for additional libraries.
(sasl-mechanisms): Calculate from sasl-mechanism-alist.
2020-05-23 Kazuhiro Ito <[email protected]>
Rmove some files which are inluded in Emacs.
* hmac-def.el: Removed.
* hex-utils.el: Removed.
* sasl-ntlm.el: Removed.
* FLIM-ELS (flim-modules, hmac-modules): Remove removed files.
2020-05-23 Kazuhiro Ito <[email protected]>
Suppress byte-compiler's warnings.
* eword-decode.el (eword-decode-header): Add obsolete date.
* eword-encode.el: Fix dependency.
(eword-encode-header, eword-in-subject-p)
(eword-encode-field-body): Add obsolete date.
* mime-def.el: Remove dependecy on static.el.
(eval-when-compile): Assume Emacs24 or later.
(mime-message-structure): Add obsolete date.
* mime-parse.el: Fix dependency.
(mime-parse-parameters-from-list): Add obsolete date.
* qmtp.el (qmtp-via-qmtp): Add obsolete date.
* smtp.el (smtp-via-smtp): Add obsolete date.
* std11.el (std11-parse-in-reply-to): Add obsolete date.
2020-05-23 Kazuhiro Ito <[email protected]>
Drop old platforms support, dependency on cl.el. Now supported
Emacsen are version 24 and later.
* FLIM-ELS: Assume Emacs version 24 or later.
* eword-encode.el: Likewise.
* md5.el: Likewise.
* mel-q-ccl.el: Likewise.
* mel-q.el: Likewise.
* mel.el: Likewise.
* sha1.el: Likewise.
* eword-decode.el: Use cl-lib instead of cl.
* md5-dl.el: Removed.
* md5-el.el: Removed.
* mel-b-ccl.el: Removed.
* mel-b-dl.el: Removed.
* mel-b-el.el: Removed.
* sha1-el.el: Removed.
* sha1-dl.el: Removed.
* md4.el: Removed. Included in Emacs.
* ntlm.el: Removed. Included in Emacs.
* smtpmail.el: Removed. Included in Emacs.
2020-03-03 Kazuhiro Ito <[email protected]>
* sasl-xoauth2.el (sasl-xoauth2-response): Fix typo in variable name.
2020-02-28 Kazuhiro Ito <[email protected]>
* sasl.el (sasl-mechanism-alist, sasl-mechanisms): Add OAUTHBEARER
as alias for XOAUTH2.
2019-05-26 Kazuhiro Ito <[email protected]>
* eword-decode.el (eword-decode-token): Escape characters which
cause warning from byte compiler.
2018-03-29 Kazuhiro Ito <[email protected]>
Fix EHLO command is sent twice after STARTTLS command when
built-in GnuTLS library is used.
* smtp.el (smtp-open-gnutls-starttls-stream): Abolished.
(smtp-open-connection): Do not use smtp-open-gnutls-starttls-stream.
(smtp-primitive-starttls): Use gnutls-negotiate when built-in
GnuTLS is used for STARTTLS connection.
2018-01-18 Kazuhiro Ito <[email protected]>
XOAUTH2 authentication support is introduced (experimental).
* FLIM-ELS: Install sasl-xoauth2.el when oauth2.el is installed.
* sasl.el (sasl-mechanisms, sasl-mechanism-alist): Add entry for
XOAUTH2.
* sasl-xoauth2.el: New file.
2016-12-06 Piotr Trojanek <[email protected]>
* luna.el (luna-class-find-member)
(luna-class-find-or-make-member): do not modify input argument.
2016-11-30 Piotr Trojanek <[email protected]>
* luna.el (luna-define-class-function): simplify iteration with
dolist.
2016-10-30 Kazuhiro Ito <[email protected]>
* std11.el (std11-full-name-string): Refactored.
2016-10-30 Kazuhiro Ito <[email protected]>
* eword-decode.el (eword-decode-structured-field-body)
(eword-decode-and-unfold-structured-field-body)
(eword-decode-and-fold-structured-field-body): Decrease number of
times for calling concat function.
* std11.el (std11-wrap-as-quoted-pairs, std11-strip-quoted-pair)
(std11-comment-value-to-string): Likewise.
2016-10-30 Kazuhiro Ito <[email protected]>
* smtp.el (smtp-send-buffer, smtp-send-buffer-by-myself): Call
kill-buffer with nil. Only Emacs 23 and later support omitting an
argument for kill-buffer. Reported By Tatsuya Kinoshita
<[email protected]>. Cf. [wl:14662]
2016-08-31 Kazuhiro Ito <[email protected]>
* eword-decode.el (eword-analyze-encoded-word): Fix the check for
non-atom special chars to permit space chars.
2016-08-14 Erik Hetzner <[email protected]>
* mime-en.texi: Add dir entry
* mime-ja.texi: Likewise
2016-08-13 Kazuhiro Ito <[email protected]>
* eword-decode.el (eword-analyze-encoded-word): Quote decoded word
when it contains non-atom special chars and not quoted.
Cf. https://github.com/wanderlust/wanderlust/issues/126
2016-03-12 Kazuhiro Ito <[email protected]>
* mel.el (mel-prompt-for-encoding): New function.
(mime-encode-region, mime-decode-region)
(mime-insert-encoded-file, mime-write-decoded-region): Use it.
2015-12-13 Kazuhiro Ito <[email protected]>
* smtp.el (smtp-send-buffer, smtp-send-buffer-by-myself): Kill
trace buffer after sending when smtp-debug is nil and network
stream is disconnected. Suggested by Herbert J. Skuhra
2015-07-30 Kazuhiro Ito <[email protected]>
* smtp.el (smtp-primitive-auth): Fix the case that server returns
human readable string for AUTH command.
2015-05-23 Kazuhiro Ito <[email protected]>
* smtp.el (smtp-make-fqdn): Show more informative message for
invalid FQDN.
Cf. https://github.com/wanderlust/wanderlust/issues/96
2015-05-02 Kazuhiro Ito <[email protected]>
* eword-encode.el: Require poem.el for non-mule.
2015-04-30 Kazuhiro Ito <[email protected]>
* mime-parse.el (mime-default-ccl-lexical-analyzer)
(mime-ccl-lexical-analyzer): Fix for CCL unusable environments.
* std11.el (std11-default-ccl-lexical-analyzer)
(std11-ccl-lexical-analyzer): Likeswise.
2015-04-27 Kazuhiro Ito <[email protected]>
* mime-parse.el (mime-default-ccl-lexical-analyzer): Fix wrong
program is build on XEmacs.
Cf. https://github.com/wanderlust/flim/commit/488a4d70fb4ae57bdd30dc75c2d75579894e28a2
* std11.el (std11-default-ccl-lexical-analyzer): Likewise.
2015-03-10 Kazuhiro Ito <[email protected]>
* mime-parse.el (mime-default-ccl-lexical-analyzer): Fix the case
input is terminated with space characters or non-closing comment.
2014-12-21 Kazuhiro Ito <[email protected]>
* std11.el (std11-ignored-token-p): Simplified.
2014-12-16 Kazuhiro Ito <[email protected]>
CCL base lexical analyzers are available. They are much faster.
If you modify `std11-lexical-analyzer' or `mime-lexical-analyzer',
you also need to modify `std11-ccl-lexical-analyzer' or
`mime-ccl-lexical-analyzer', respectively.
* mime-parse.el (mime-default-ccl-lexical-analyzer): New CCL program.
(mime-ccl-lexical-analyzer): New customizable variable.
(mime-lexical-analyze): Use CCL based lexical analyzer if
mime-ccl-lexical-analyzer is non-nil.
* std11.el (std11-default-ccl-lexical-analyzer): New CCL program.
(std11-ccl-lexical-analyzer): New customizable variable.
(std11-lexical-analyze): Use CCL based lexical analyzer if
std11-ccl-lexical-analyzer is non-nil.
2014-11-09 Kazuhiro Ito <[email protected]>
* mime-en.texi (7bit): Fix typo.
* mime-ja.texi: Fix missing cross-references.
2014-11-09 Erik Hetzner <[email protected]>
* flim-pkg.el: New file.
2014-11-09 Erik Hetzner <[email protected]>
* mime-en.texi: Fix headers and missing cross-references.
* mime-ja.texi: Fix headers.
* mime-en.sgml: Removed.
* mime-ja.sgml: Removed.
2014-09-15 Kazuhiro Ito <[email protected]>
* mime-conf.el (mime-format-mailcap-command): Minor refactoring.
2014-09-13 Erik Hetzner <[email protected]>
* mime-conf.el (mime-format-mailcap-command): Add quotes for
quoted file name to unquote.
Cf. https://github.com/wanderlust/flim/pull/3
2014-08-31 Kazuhiro Ito <[email protected]>
* mime-parse.el (mime-decode-parameter-value)
(mime-decode-parameters): Use string-to-number instead of
string-to-int.
2014-08-31 Kazuhiro Ito <[email protected]>
* eword-encode.el (eword-encode-char-type): Defined as macro.
2014-08-31 Kazuhiro Ito <[email protected]>
* lunit.el (lunit-generate-template): Use `with-current-buffer'
rather than save-excursion+set-buffer.
* mmbuffer.el (initialize-instance, mime-write-entity)
(mime-entity-body, mime-write-entity-body, mime-entity-content)
(mime-write-entity-content, mime-entity-fetch-field): Likewise.
* mmcooked.el (write-entity-content, write-entity)
(write-entity-body): Likewise.
* mmgeneric.el (mime-insert-header-from-buffer): Likewise.
* qmtp.el (qmtp-send-buffer): Likewise.
* smtp.el (smtp-package-buffer-internal-size, smtp-send-buffer)
(smtp-send-buffer-by-myself, smtp-primitive-data)
(smtp-process-filter, smtp-send-command)
(smtp-deduce-address-list): Likewise.
2014-06-20 Kazuhiro Ito <[email protected]>
Un-encoded garbage handling is available when built-in base64
decoder is used.
* mel.el (mel-b-builtin-garbage-strategy): New customizable
variable.
(mel-b-builtin-encoded-line-regexp): New variable.
(mel-b-builtin-decode-string, mel-b-builtin-decode-region): New
functions.
(mime-decode-string, mime-decode-region)
(mime-write-decoded-region): (mel-b-builtin) Use them.
2014-05-31 Juliusz Chroboczek <[email protected]>
* mel.el (mime-insert-encoded-file): Avoid going through an
intermediary string, work inline.
(mime-write-decoded-region): likewise.
2014-04-23 Kazuhiro Ito <[email protected]>
* FLIM-ELS: Check whether secure-hash function is defined.
Cf. https://github.com/ikazuhiro/flim/commit/85bbe382c4812fd041207aa727acba8ece2e7a39#commitcomment-6082738
* hmac-md5.el: Likewise.
* hmac-sha1.el: Likewise.
* sha1.el (TOP, sha1-dl-module): Likewise.
2014-04-15 Kazuhiro Ito <[email protected]>
* FLIM-ELS: Install sha1-el.el when dynamic-link is available and
built-in sha1 library is not available.
2014-04-05 Kazuhiro Ito <[email protected]>
* std11.el (std11-narrow-to-header)
(std11-field-bodies): Minor refactoring.
2014-03-30 Kazuhiro Ito <[email protected]>
* sasl-cram.el: Require hex-util.el.
* sasl-digest.el: Require hex-util.el.
* hmac-md5.el: Do not require hex-util.el. Define autoload for
decode-hex-string only when needed.
(md5-binary): Use built-in functionality if available.
* hmac-sha1.el: Linkewise.
(sha1-binary): Use built-in functionality if available.
2014-03-29 Kazuhiro Ito <[email protected]>
* FLIM-ELS: Do not install sha1-el.el when built-in SHA1 library
is available.
* sha1.el: Do not require sha1-el.el in the above case.
(sha1-dl-module): set to nil in the above case.
2014-02-22 Kazuhiro Ito <[email protected]>
* mel-q-ccl.el (quoted-printable-ccl-insert-encoded-file): Call
insert-file-contents-literally directly.
2013-07-05 Kazuhiro Ito <[email protected]>
* eword-encode.el: Fix the previous change for really checking.
2013-07-04 Kazuhiro Ito <[email protected]>
* eword-encode.el: Check whether the mule-vesion variable is defined.
2013-06-26 Kazuhiro Ito <[email protected]>
* mailcap.el: Removed to resolve compatibility problem when run in
expanded place.
2013-03-23 Kazuhiro Ito <[email protected]>
Many encoder/decoder functions now always encode/decode regardless
buffer's multibyteness.
* mime-def.el (mime-charset-decode-string)
(mime-charset-encode-string): New functions.
* mime-parse.el (mime-decode-parameter-value)
(mime-encode-extended-parameter): Use them.
* eword-decode.el (eword-decode-unstructured-field-body)
(eword-decode-and-unfold-unstructured-field-body)
(eword-decode-unfolded-unstructured-field-body)
(eword-decode-encoded-words, eword-analyze-quoted-string)
(eword-analyze-comment, eword-analyze-atom): Use
mime-charset-decode-string instead of decode-mime-charset-string.
* eword-encode.el (tm-eword::encoded-word-length)
(tm-eword::encoded-word-length): Use mime-charset-encode-string
instead of encode-mime-charset-string.
2012-08-14 Kazuhiro Ito <[email protected]>
* std11.el (std11-unfold-strip-leading-tab): New variable.
(std11-unfold-string): Use it. Workaround for incorrect folding.
2012-08-10 Kazuhiro Ito <[email protected]>
* mel-q-ccl.el (q-encoding-ccl-decode-string): Remove duplicate
definition for Emacs 23.1.
2012-07-29 Kazuhiro Ito <[email protected]>
* eword-encode.el (ew-find-string-rule): Define own function for
Emacs23 which has APEL with detect-mime-charset-string for it.
(ew-find-charset-rule): Define only when needed.
2012-07-29 Kazuhiro Ito <[email protected]>
* eword-encode.el (ew-find-string-rule): New function.
(eword-encode-phrase-to-rword-list): Use it.
2012-07-29 Kazuhiro Ito <[email protected]>
* eword-encode.el (tm-eword::string-to-ruled-words): Define own
function for Emacs23 which has APEL with
detect-mime-charset-string for it.
(eword-encode-char-type, eword-encode-divide-into-charset-words)
(eword-encode-charset-words-to-words): Define only when needed.
2012-07-29 Kazuhiro Ito <[email protected]>
* eword-encode.el (tm-eword::string-to-ruled-words): New function.
(eword-encode-split-string, eword-encode-phrase-to-rword-list):
Use it.
2012-04-28 MORIOKA Tomohiko <[email protected]>
* README.ja, README.en (Bug reports): Use "Emacs-MIME" instead of
"EMACS-MIME".
2001-02-27 Martin Buchholz <[email protected]>
* mime-en.sgml: Typo fix.
2012-04-28 MORIOKA Tomohiko <[email protected]>
* README.ja, README.en (Bug reports): Modify for
emacs-mime-{en|ja}@lists.chise.org.
2012-04-20 Kazuhiro Ito <[email protected]>
* mime-parse.el (mime-parse-message): Use mime-read-Content-Type
instead of mime-parse-Content-Type.
2012-04-07 Kazuhiro Ito <[email protected]>
* smtp.el (smtp-open-connection): Raise error when open connection
function failed.
2012-03-20 Kazuhiro Ito <[email protected]>
Support built-in GnuTLS for STARTTLS connection.
* smtp.el (smtp-use-gnutls): New cutomizable variable.
(smtp-open-gnutls-starttls-stream): New function.
(smtp-submit-package): Respect smtp-use-gnutls's value.
(smtp-send-buffer, smtp-send-buffer-by-myself): Do not
decide smtp-open-connection-function's value here.
(smtp-open-connection): Decide which open-connection-function is
called here. Respect smtp-use-gnutls's value.
2011-06-27 Kazuhiro Ito <[email protected]>
* mel-q.el (quoted-printable-num-to-raw-byte-char): Enclose with
eval-and-compile().
2011-06-24 Kazuhiro Ito <[email protected]>
* mime-parse.el (mime-encode-parameters-broken-mime): New function.
* eword-encode.el (eword-encode-Content-Type-field-body-broken-mime)
(eword-encode-Content-Disposition-field-body-broken-mime): New
functions. If you want to use them, modify
`mime-header-encode-method-alist'.
2011-06-19 Kazuhiro Ito <[email protected]>
Revert the change of 2004-02-17.
* smtp.el (smtp-starttls-program, smtp-starttls-extra-args):
Abolished.
(smtp-send-buffer): Likewise.
2011-06-09 Kazuhiro Ito <[email protected]>
* mime.el (mime-entity-filename): When a result is got from entity
header, decode it.
2011-06-07 Kazuhiro Ito <[email protected]>
Merged from rfc2231-encoder branch.
* eword-encode.el (eword-encode-Content-Type-field-body)
(eword-encode-Content-Disposition-field-body): New functions.
* mime-def.el (mime-attribute-char-regexp): Update for RFC2231.
(mime-non-attribute-char-regexp): New constant.
* mime-parse.el (mime-divide-extended-parameter)
(mime-encode-extended-parameter, mime-divide-regular-parameter)
(mime-encode-regular-parameter, mime-encode-parameters): New
functions.
2011-05-16 David Maus <[email protected]>
* md4.el (md4-make-step): Use new style backqoutes. Slipped
through 2010-11-14.
2010-11-14 HAMANO Kiyoto <[email protected]>
* sha1-el.el (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1)
(sha1-S5, sha1-S30, sha1-OP, sha1-add-to-H): Use new style
backquotes.
* md5-el.el: Dto.
* md4.el (md4-make-step): Dto.
* hmac-def.el (define-hmac-function): Dto.
* hex-util.el (hex-char-to-num, hex-char-to-char): Dto.
* eword-encode.el (make-ew-rword, ew-rword-text)
(ew-rword-charset, ew-rword-encoding, ew-rword-type): Dto.
2010-11-13 Kazuhiro Ito <[email protected]>
* mime-parse.el (mime-uri-parse-cid): Respect
mime-field-parser-alist's value.
2010-08-05 Tetsurou Okazaki <[email protected]>
* smtp.el (smtp-submit-package): Handle the case that
`smtp-find-connection' returns nil in unwind forms.
2010-06-21 Katsumi Yamaoka <[email protected]>
* FLIM-CFG: Add emu subdirectory to load-path when LISPDIR is
specified. Suggested by Kazuhiro NISHIYAMA <[email protected]>.
2010-03-10 Kazuhiro Ito <[email protected]>
* mel-q-ccl.el (quoted-printable-ccl-decode-string)
(q-encoding-ccl-decode-string): Use ccl-execute-on-string() when
encoder for CCL coding system is broken.
(quoted-printable-ccl-decode-region)
(quoted-printable-ccl-write-decoded-region): Use
quoted-printable-ccl-decode-string in the above environment.
(TOP): Check facility for them. Another check for decoder for ccl
coding system is added.
* mel-q.el (quoted-printable-num-to-raw-byte-char): New inline
function.
(quoted-printable-internal-decode-region)
(q-encoding-decode-string): Use it.
2010-02-20 Kazuhiro Ito <[email protected]>
* mel-q-ccl.el (quoted-printable-ccl-encode-string)
(quoted-printable-ccl-insert-encoded-file)
(q-encoding-ccl-encode-string): Change branches to facility based.
(TOP): Check facility for them.
2010-02-18 Kazuhiro Ito <[email protected]>
* mel-q-ccl.el (quoted-printable-ccl-encode-string)
(quoted-printable-ccl-insert-encoded-file)
(q-encoding-ccl-encode-string): Make new vector instead of use of
the one that is hard-coded in the program.
2010-02-14 Tetsurou Okazaki <[email protected]>
* smtp.el (smtp-primitive-mailfrom): Fixed two spaces may be used
as a separator before "BODY=8BITMIME".
2010-02-09 Kazuhiro Ito <[email protected]>
* mel-q-ccl.el (quoted-printable-ccl-encode-string)
(quoted-printable-ccl-insert-encoded-file)
(q-encoding-ccl-encode-string): Use ccl-execute-on-string() on
Emacs 23.1.
(quoted-printable-ccl-encode-region): Use
quoted-printable-ccl-encode-string() on Emacs 23.1.
2010-01-25 Kazuhiro Ito <[email protected]>
* mel-q-ccl.el (mel-ccl-encode-quoted-printable-generic): Output
invalid character as is.
2010-01-24 Kazuhiro Ito <[email protected]>
* mel.el (8bit-write-decoded-region): Use no-conversion coding
system for writing.
* mel-q.el (quoted-printable-quote-char)
(quoted-printable-internal-encode-region): Support Emacs 23
raw-byte characters in multibyte string.
* mel-q-ccl.el (mel-ccl-decode-q)
(mel-ccl-encode-q-generic)
(mel-ccl-encode-quoted-printable-generic): Ditto.
(quoted-printable-ccl-write-decoded-region): Use LF eol coding
system explicitly.
2008-11-25 Katsumi Yamaoka <[email protected]>
* eword-decode.el (eword-decode-string, eword-decode-region):
Mention language info in doc string.
2008-11-25 Katsumi Yamaoka <[email protected]>
* eword-decode.el (eword-decode-string, eword-decode-region)
(eword-analyze-encoded-word): Express the language portion of an
encoded word as a symbol.
* tests/test-rfc2231.el (test-rfc2231-encoded-word-1)
(test-rfc2231-encoded-word-2, test-rfc2231-encoded-word-3): Use
eword-decode-string instead of eword-decode-encoded-word.
2008-09-20 Yoichi NAKAYAMA <[email protected]>
* mel-q-ccl.el (mel-ccl-256-to-16-table): Accept (illegal) lower
case representation for decoding.
2007-11-28 MORIOKA Tomohiko <[email protected]>
* FLIM: Version 1.14.9 (Gojō) released.
2006-12-20 MORIOKA Tomohiko <[email protected]>
* mime-def.el (mime-library-product): Update to 1.14.9.
2007-06-18 Wencheng Fang <[email protected]>
* mel.el (mime-write-decoded-region): Define method function that
uses built-in base64-decode-region. [cf. <emacs-mime-ja:02169>]
2006-12-20 MORIOKA Tomohiko <[email protected]>
* README.ja, README.en (Installation): Update required version of
APEL to 10.7 or later.
* FLIM-CFG (PACKAGEDIR): Use
`install-get-default-package-directory'.
2006-12-13 Katsumi Yamaoka <[email protected]>
* FLIM-CFG (PACKAGEDIR): Avoid an error with Emacs.
2006-12-12 Katsumi Yamaoka <[email protected]>
* FLIM-MK (compile-flim-package): Use
batch-update-directory-autoloads if it is available instead of
batch-update-directory.
2006-12-11 Katsumi Yamaoka <[email protected]>
* FLIM-CFG (PACKAGEDIR): Check for
(early|late|last)-package-hierarchies and configure-package-path
as well as (early|late|last)-packages.
2006-09-24 Daiki Ueno <[email protected]>
* smtp.el (smtp-progress-message-format): Abolished; reverted the
change 2004-08-11 Katsumi Yamaoka <[email protected]>.
2006-09-24 Daiki Ueno <[email protected]>
* smtp.el (smtp-end-of-line): Abolished; reverted the change
2002-07-24 Katsumi Yamaoka <[email protected]>.
2006-06-15 Yoichi NAKAYAMA <[email protected]>
* smtp.el (smtp-submit-package): Ignore error in
`smtp-primitive-quit' where SMTP mail transaction is completed.
2006-06-12 Hiroya Murata <[email protected]>
* mel-b-ccl.el (base64-ccl-insert-encoded-file): Use
`insert-file-contents-as-binary' instead of `insert-file-contents'.
* mel-q-ccl.el (quoted-printable-ccl-insert-encoded-file):
Likewise.
2006-02-18 Hiroya Murata <[email protected]>
* smtp.el (smtp-debug): New user option.
(smtp-read-response): Treat a line break code loosely. If
smtp-debug is non-nil, show an invalid response.
2005-12-25 Katsumi Yamaoka <[email protected]>
* eword-decode.el: Change the way to decode successive
encoded-words: decode B- or Q-encoding in each encoded-word,
concatenate them, and decode it as charset. See the following
threads for more information:
http://news.gmane.org/group/gmane.emacs.pretest.bugs/thread=9541
http://news.gmane.org/group/gmane.emacs.gnus.general/thread=61176
(eword-decode-allow-incomplete-encoded-text): New variable.
(eword-decode-encoded-words): New function.
(eword-decode-string): Use it.
(eword-decode-region): Use it.
(eword-analyze-encoded-word): Use it.
(eword-decode-encoded-word): Abolish.
(eword-decode-encoded-text): Abolish.
(eword-decode-encoded-word-error-handler): Abolish.
(eword-warning-face): Abolish.
(eword-decode-encoded-word-default-error-handler): Abolish.
2005-12-25 MORIOKA Tomohiko <[email protected]>
* FLIM: Version 1.14.8 (Shijō) released.
2005-12-25 MORIOKA Tomohiko <[email protected]>
* mime-def.el (mime-library-product): Update to 1.14.8.
2005-11-13 Yoichi NAKAYAMA <[email protected]>
* std11.el (std11-addr-to-string): Reconstruct domain literal.
From Yuuichi Teranishi [cf. <emacs-mime-ja:01956>]
2005-07-25 Daiki Ueno <[email protected]>
* smtp.el (smtp-read-response): Signal an error if connection is
closed while reading response. From Hiroya Murata
<[email protected]> [cf. <emacs-mime-ja:01978>]
2004-11-20 Daiki Ueno <[email protected]>
* ntlm.el (ntlm-ascii2unicode): Don't apply zerop to a character.
(ntlm-smb-hash): Ditto.
2004-10-01 MORIOKA Tomohiko <[email protected]>
* FLIM: Version 1.14.7 (Sanjō) released.
2004-10-01 MORIOKA Tomohiko <[email protected]>
* mime-def.el (mime-library-product): Update to 1.14.7.
2004-09-27 Katsumi Yamaoka <[email protected]>
* mime-en.sgml, mime-ja.sgml (CVS based development): Remove the
description about developers' pserver access.
2004-09-02 Katsumi Yamaoka <[email protected]>
* sha1-dl.el: Don't provide the sha1-dl feature twice.
(sha1-region): Allow the optional argument `binary'.
(sha1): Ditto.
2004-08-11 Katsumi Yamaoka <[email protected]>
* smtp.el (smtp-parse-progress-message-format): Fix regexp usage.
2004-08-11 Katsumi Yamaoka <[email protected]>
* smtp.el (smtp-progress-message-format): New user option.
(smtp-primitive-data): Show progress message.
(smtp-parse-progress-message-format): New function.
(smtp-show-progress-message): New function.
(smtp-deduce-address-list): Use insert instead of insert-string.
2004-07-27 Yoichi NAKAYAMA <[email protected]>
* mel-g.el (gzip64-external-encoder): Change default value to
cause more recognizable error.
(gzip64-external-decoder): Ditto.
2004-06-09 Yoichi NAKAYAMA <[email protected]>
* std11.el (std11-parse-word-or-comment-or-period): Renamed from
`std11-parse-word-or-comment' and allow period.
(std11-parse-phrase): Allow parsing obs-phrase in rfc2822.
2004-05-24 Len Trigg <[email protected]>
* mime-conf.el (mime-format-mailcap-command): Quote a file name
which may contain spaces using `shell-quote-argument' in order to
pass it to the shell safely.
2004-05-10 Katsumi Yamaoka <[email protected]>
* eword-encode.el (mime-encode-header-in-buffer): Don't ignore a
space char at the beginning of a field body in order to honor the
76-column rule which is described in RFC 2047 section 2.
2004-04-15 MORIOKA Tomohiko <[email protected]>
* eword-decode.el (eword-decode-encoded-text): Fix bug when
`must-unfold' is specified; eliminate CR too when `must-unfold' is
specified.
2004-04-13 Kenichi Okada <[email protected]>
* mel-u.el (mime-write-decoded-region): Use make-temp-file.
(uuencode-external-decode-region): Ditto.
2004-04-12 Kenichi Okada <[email protected]>
* mel-u.el (mime-write-decoded-region): Use temporary filename.
2004-03-05 Jesper Harder <[email protected]>
* sha1-el.el (sha1-maximum-internal-length): Doc fix.