-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathChangeLog.1
8463 lines (5435 loc) · 262 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-19 Kazuhiro Ito <[email protected]>
Change non-ASCII text files's coding-system to UTF-8
* ChangeLog: Likewise.
* README.ja: Likewise.
* VERSION: Likewise.
* semi-def.el: Remove coding cookie. This file is actually
encoded in US-ASCII.
* mime-edit.el: Likewise.
* mime-ui-ja.texi: Assume LuaTeX for typesetting.
2020-08-10 Jan Seeger <[email protected]>
New variable `mime-edit-insert-file-confirm' is introduced
When nil, don't confirm MIME parameters when inserting files.
* mime-edit.el (mime-edit-insert-file-confirm): New variable.
(mime-edit-insert-file, mime-edit-insert-file-as-text): Refer to
it.
2020-08-05 Naoya Yamashita <[email protected]>
Fix closing parens position (cosmetic change only).
Cf. https://github.com/wanderlust/semi/pull/21
2020-06-29 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-insert-file-parameters): Fix typo.
2020-06-14 Kazuhiro Ito <[email protected]>
Minor refactorings.
* mime-edit.el (mime-edit-insert-file-parameters): Reduce use of
concat functions.
(mime-make-tag): Remove redundant codes.
(replace-space-with-underline)
(mime-edit-decode-single-part-in-buffer): Minor refactorings.
2020-06-12 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-display-text/plain): Revert the last
change. Fix the case content length is 0.
2020-06-05 Kazuhiro Ito <[email protected]>
* mime-edit.el: Require invisible.el explicitly.
2020-06-05 Kazuhiro Ito <[email protected]>
* SEMI-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.
* mime-signature.el (mime-edit-signature-insert-plain)
(mime-edit-insert-signature): Likewise.
* mime-vcard.el (mime-display-text/vcard): Likewise.
* mime-view.el (mime-display-text/plain-flowed)
(mime-display-text/plain, mime-display-entity): Likewise.
2020-06-02 Kazuhiro Ito <[email protected]>
Use invisibility feature directly.
* mime-edit.el: Don't require invisible.el.
(turn-on-mime-edit): Don't call enable-invisible function.
2020-06-02 Kazuhiro Ito <[email protected]>
Strip use of function wrapping lambda.
* mail-mime-setup.el (mime-edit-split-message-sender-alist): Likewise.
* mime-edit.el (mime-edit-decode-single-part-in-buffer)
(mime-edit-split-and-send, replace-space-with-underline)
(mime-prompt-for-parameter): Likewise.
* mime-play.el (mime-echo-window-height, mime-play-entity): Likewise.
2020-06-01 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-display-header-hook): Define explicitly.
2020-05-30 Kazuhiro Ito <[email protected]>
* mime-vcard.el: Suppress byte compiler warning.
2020-05-30 Kazuhiro Ito <[email protected]>
* mime-bbdb.el: Removed.
* SEMI-ELS: Likewise.
* signature.el: Likewise.
2020-05-23 Kazuhiro Ito <[email protected]>
Use lexical binding.
* mail-mime-setup.el: Likewise.
* mime-bbdb.el: Likewise.
* mime-edit.el: Likewise.
* mime-image.el: Likewise.
* mime-mac.el: Likewise.
* mime-partial.el: Likewise.
* mime-pgp.el: Likewise.
* mime-play.el: Likewise.
* mime-setup.el: Likewise.
* mime-shr.el: Likewise.
* mime-signature.el: Likewise.
* mime-vcard.el: Likewise.
* mime-view.el: Likewise.
* mime-w3.el: Likewise.
* semi-def.el: Likewise.
* semi-setup.el: Likewise.
* signature.el: Likewise.
2020-05-23 Kazuhiro Ito <[email protected]>
* semi-setup.el (mime-setup-enable-epg): Default value is always
t.
2020-05-23 Kazuhiro Ito <[email protected]>
Suppress byte-compiler's warnings.
* semi-setup.el (insert-signature): Move autoload cookie to top
level.
2020-05-23 Kazuhiro Ito <[email protected]>
Drop old platforms support, dependency on cl.el. Now supported
Emacsen are version 24 and later.
* SEMI-ELS (semi-modules-to-compile): Remove postpet.el.
* mime-edit.el: Assuse Emacs 24 or later.
(mime-edit-help): Use help-print-return-message instead of
print-help-return-message
(mime-edit-insert-file-as-text, mime-edit-insert-file): Use
called-interactively-p instead of interactive-p.
(mime-edit-encrypt-pgp-recipients-keys): Now arguments are CONTEXT
and RECIPIENTS.
(mime-edit-encrypt-pgp-mime): Caller adjusted.
* mime-image.el: Assume Emacs 24 or later. Don't require cl.el,
static.el
* mime-pgp.el (mime-edit-make-boundary): Add autoload cookie.
* mime-view.el: Assume Emacs 24 or later.
(mime-view-mode): Don't use mime-message-structure
variable, which is obsolete.
(richtext-decode): Add autoload cookie.
* mime-w3.el: Assume Emacs 24 or later.
* postpet.el: Removed.
* semi-def.el: Remove dependency on cl.el. Assume Emacs 24 or
later.
* semi-setup.el (mime-setup-enable-inline-html)
(mime-html-previewer-alist): Add obsolete date.
(mime-setup-enable-inline-image): Assume Emacs 24 or later.
2020-04-28 Tatsuya Kinoshita <[email protected]>
* mime-edit.el (mime-edit-user-agent-value): Check for
emacs-build-number existence to handle emacs-version correctly.
2020-04-13 Kazuhiro Ito <[email protected]>
* mime-image.el (mime-image-max-width, mime-image-max-height):
Accept floating-point value which indicates ratio to frame pixel
width and height, respectively.
(mime-image-create): calculate max-width and max-height as above.
2020-04-12 Kazuhiro Ito <[email protected]>
* mime-image.el (mime-image-create): Check native image scaling
more strictly. Fix typo.
2019-07-07 Tatsuya Kinoshita <[email protected]>
* mime-view.el (mime-display-multipart/multilingual-prefered-languages):
Check for `get-language-info' existence.
2019-06-26 Kazuhiro Ito <[email protected]>
* mime-image.el (mime-image-create): Update native image scaling
checker.
2019-06-26 Kazuhiro Ito <[email protected]>
Support previewing unencrypted pkcs7-mime part.
* mime-pgp.el (mime-pgp-maybe-remove-cr): New funcion.
(mime-pgp-decrypt-string): Use it.
(mime-pgp-entity-string): New function.
(mime-verify-application/*-signature-internal): Use it.
(mime-pgp-verify-result-to-string)
(mime-pgp-pkcs7-decrypt-enveloped-data)
(mime-pgp-pkcs7-verify-signed-data)
(mime-pgp-smime-type-from-situation)
(mime-pgp-register-decrypted-buffer): New functions.
(mime-preview-application/pgp-encrypted): Refactored.
(mime-view-application/pkcs7-mime)
(mime-preview-application/pkcs7-mime): Support unencrypted part.
2019-05-18 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-pgp-encrypt-to-self): Change default
value to t.
2019-05-18 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-view-multipart/related-show-all-children)
(mime-view-multipart/alternative-show-all-children): Change
default value to t.
2019-05-17 Kazuhiro Ito <[email protected]>
* mime-image.el (mime-image-normalize-xbm-buffer)
(mime-image-read-xbm-buffer): Do not receive arguemnt nor change
current buffer. All callers call it with current buffer.
(mime-image-create): Caller adjusted.
2019-05-17 Kazuhiro Ito <[email protected]>
New customizable variable mime-image-normalize-xbm is introduced.
When it is nil, xbm image is not normalized but scalable.
* mime-image.el (mime-image-normalize-xbm): New customizable
variable.
(mime-image-max-height, mime-image-max-width): Update docstring to
refer to mime-image-normalize-xbm.
(mime-image-create): Do not normalize xbm image when
mime-image-normalize-xbm is nil.
2019-05-16 Kazuhiro Ito <[email protected]>
Native image scaling support.
* mime-image.el (mime-image-max-height, mime-image-max-width):
Update docstring.
(mime-image-create): Use image scaling if available.
2019-04-04 Kazuhiro Ito <[email protected]>
* mime-tnef.el (mime-tnef-parse): Fix the case input STRING is too
short.
2019-03-07 Kazuhiro Ito <[email protected]>
* mime-tnef.el (mime-tnef-decode-string)
(mime-tnef-decode-unicode-string): Minor refactoring.
2019-03-07 Kazuhiro Ito <[email protected]>
Fix the case winmail.dat contains text file.
mime-edit-insert-file-parameters requires a existing file to
decide charset value. By this fix, caller decides charset.
* mime-tnef.el (mime-tnef-insert-file-parameters): New function.
(mime-tnef-insert-file): Use it.
2018-08-25 Kazuhiro Ito <[email protected]>
Displaying resized image is supported. Emacs 24.4 or later with
built-in imagemagick is required.
* mime-image.el (mime-image-max-height, mime-image-max-width): New
variables.
(mime-image-create): Use them.
2018-02-11 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-view-multipart-descendant-button)
(mime-display-multipart/alternative): pass situation as
DEFAULT-SITUATION to mime-display-entity function.
2018-02-10 Kazuhiro Ito <[email protected]>
Show entity's button after header when content type is message and
child entity is not text nor multipart.
* mime-view.el (mime-view-entity-title): prefer filename to
Subject field.
(mime-display-entity): If situation parameter `button-position' is
`after', display button after header.
(mime-display-message): Display child entitiy's button after
header when needed.
(mime-display-message/rfc822): New function. Used for
message/rfc822 and message/news entity.
2018-02-11 Kazuhiro Ito <[email protected]>
Support for multipart/multilingual entity (RFC 8255).
* mime-edit.el (mime-edit-decode-single-part-in-buffer): Keep
Content-Language and Content-Translation-Type fields.
* mime-view.el (mime-view-insert-entity-button): Show language
information in button if Content-Language: header is available.
(mime-display-multipart/multilingual-prefered-languages)
(mime-display-multipart/multilingual-unknown-translation-type)
(mime-display-multipart/multilingual-translation-type-score)
(mime-display-multipart/multilingual-interactive): New varaibles.
(mime-display-multipart/multilingual-select-interactively)
(mime-display-multipart/multilingual-select-automatically)
(mime-display-multipart/multilingual): New functions.
2018-02-11 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-display-multipart/related): Use
mime-view-multipart-descendant-button for multipart children when
mime-view-multipart/related-show-all-children is non-nil.
2018-02-05 Kazuhiro Ito <[email protected]>
Workaround for Apple Mail, which may attach attachment as part of
multipart/alternative entity. It is hard to find the attachment
for MIME-View mode user. When
mime-view-multipart/alternative-show-all-children is non-nil, such
hidden attachment's button would appear.
* mime-view.el
(mime-view-multipart/alternative-show-all-children): New variable.
(mime-view-multipart-descendant-button): New function.
(mime-display-multipart/alternative): As above.
2016-08-14 Erik Hetzner <[email protected]>
* mime-ui-en.texi: Add dir entry
* mime-ui-ja.texi: Likewise
2016-07-01 Kazuhiro Ito <[email protected]>
* mime-tnef.el (mime-tnef-files): Fix corrupt result.
2016-03-01 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-insert-file-charset): Use default
parameter for completing-read. Show default value into the
prompt.
(mime-prompt-for-type): Simplify result checking routine.
(mime-prompt-for-subtype): Refactored.
(mime-prompt-for-parameter): Use default parameter for
completing-read.
(mime-prompt-for-encoding): Show default value into the prompt.
2016-02-24 Erik Hetzner <[email protected]>
* mime-edit.el (mime-prompt-for-type, mime-prompt-for-type)
(mime-prompt-for-encoding): Use default parameter to set default
answer.
(mime-prompt-for-encoding): Make default optional.
(mime-edit-insert-voice): Use `mime-prompt-for-encoding' to prompt
user for encoding.
2016-02-04 Kazuhiro Ito <[email protected]>
User is now prompted whether proceed PGP/MIME encryption when
recipient key is not available.
* mime-edit.el (mime-edit-encrypt-pgp-ignore-missing-keys): New
variable.
(mime-edit-encrypt-pgp-recipients-keys): New function.
(mime-edit-encrypt-pgp-mime): Use them.
2016-01-17 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-encrypt-pgp-mime): Do not let-bind
variable for mime-edit-make-encrypt-recipient-header here.
(mime-edit-make-encrypt-recipient-header): Let-bind internal
variable here.
2015-05-25 Kazuhiro Ito <[email protected]>
* mime-shr.el (mime-shr-preview-text/html): Workaround for
shr-insert-document.
Cf. https://github.com/wanderlust/semi/issues/11
2015-05-25 Kazuhiro Ito <[email protected]>
* mime-tnef.el (mime-tnef-insert-file): Fix for non-ASCII filename.
(mime-display-application/ms-tnef): Adjusted.
2015-05-16 Kazuhiro Ito <[email protected]>
Experimental support of application/ms-tnef entity.
* mime-edit.el (mime-content-types): Add entries for ms-tnef
subtype.
(mime-file-types): Add entry for winmail.dat.
* mime-tnef.el: New file.
* semi-setup.el: Define preview condition for application/ms-ntef
entity.
* SEMI-ELS (semi-modules-to-compile): Add mime-tnef.el.
2015-05-07 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-pgp-get-signers): Search epg-key from
From: field's mail address with exact match.
2015-05-07 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-make-encrypt-recipient-header): Car of
return vale is now expanded list of mail addresses and key-id.
Enclose mail addresses with '<' and '>'.
Cf. https://github.com/wanderlust/semi/issues/9
(mime-edit-encrypt-pgp-mime): Adjusted.
2015-05-03 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-make-encrypt-recipient-header): Handle
multiple same name fields.
2015-05-03 Kazuhiro Ito <[email protected]>
Fix for CCL unusable environments.
* mime-edit.el (mime-edit-normalize-eol-crlf): Define for only CCL
usable environment.
(mime-edit-sign-pgp-mime): Use elisp routine for CCL unusable
environments.
2015-02-04 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-make-encrypt-recipient-header): Returns
cons of recipients list and header string. Pick recipients more
strictly.
(mime-edit-encrypt-pgp-mime, mime-edit-encrypt-smime): Adjusted.
2014-11-09 Erik Hetzner <[email protected]>
* semi-pkg.el: New file.
2014-11-09 Erik Hetzner <[email protected]>
* mime-ui-en.texi: Fix headers and missing cross-references.
* mime-ui-ja.texi: Likewise.
* mime-ui-en.sgml: Removed.
* mime-ui-ja.sgml: Removed.
2014-10-26 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-verify-application/*-signature): Set
epa-info-buffer's buffer to the current buffer when the buffer is
displyed.
(mime-decrypt-application/pgp-encrypted): Remove unused code.
2014-10-25 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-add-application/pgp-keys): Prompt before
import. Show result.
* mime-edit.el (mime-edit-insert-key): Really insert keys.
2014-09-13 Erik Hetzner <[email protected]>
* mime-play.el (mime-activate-mailcap-method): Bind
process-connection-type to nil while starting external process.
Cf. https://github.com/wanderlust/semi/pull/5
2014-09-01 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-pgp-decrypt-string)
(mime-verify-application/*-signature-internal): Bind
inhibit-eol-conversion to nil while eol conversion.
2014-09-01 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-parse): Require mime-parse.el.
2014-08-31 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-translate-single-part-tag): Fix the last
change.
2014-08-31 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-split-and-send): Do not use
`insert-buffer' and `goto-line'.
2014-08-31 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-pgp-get-signers): Fix `mapcar' called
for effect.
2014-08-31 Kazuhiro Ito <[email protected]>
* mime-image.el (mime-image-normalize-xbm-buffer): Add comment for
using save-excursion+set-buffer.
* mime-partial.el
(mime-combine-message/partial-pieces-automatically): Likewise.
* mime-view.el (mime-view-buffer)
(mime-preview-follow-current-entity): Likewise.
* semi-def.el (mime-button-dispatcher): Likewise.
2014-08-31 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-split-and-send): Use
`with-current-buffer' rather than save-excursion+set-buffer.
* mime-play.el (mime-store-message/partial-piece): Likewise.
* mime-view.el (mime-preview-original-major-mode)
(mime-maybe-hide-echo-buffer)
(mime-preview-follow-current-entity): Likewise.
2014-08-30 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-process-multipart-1)
(mime-edit-translate-single-part-tag)
(mime-edit-decode-single-part-in-buffer): Remove concat from
insert and concat combination.
* mime-view.el (mime-preview-follow-current-entity): Likewise.
* semi-def.el (mime-insert-button): Likewise.
2014-08-30 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-convert-lbt-string): Refactored.
2014-08-29 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-pgp-get-signers): Prefer
mime-edit-pgp-signers's key to the first found key for the same
user ID.
(mime-edit-pgp-signers): Update docstring.
2014-05-30 Juliusz Chroboczek <[email protected]>
* mime-view.el (mime-display-multipart/alternative): Pick and
display the latter part when there are multiple parts which have
the highest score.
Cf. https://github.com/wanderlust/wanderlust/issues/60
2014-04-17 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-display-text/plain): Check parameter's value
case insensitively.
2014-04-17 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-preview-fill-flowed-text)
(mime-preview-fill-flowed-text-delsp): Abolished. Internal
decoder is always available.
(mime-display-text/plain-flowed-fill-column): New variable.
(mime-display-text/plain-flowed-parse-line)
(mime-display-text/plain-flowed): New functions.
(mime-display-text/plain): Use them.
2014-04-17 Kazuhiro Ito <[email protected]>
* SEMI-MK (compile-semi): Set mime-situation-examples-file to nil.
* mime-view.el: Do not modify mime-situation-examples-file's value.
2014-04-17 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-view-define-keymap): Use mapc instead of
mapcar for side effect.
2014-03-15 Kazuhiro Ito <[email protected]>
* semi-setup.el: Set up for previewing
application/x-pkcs7-signature part.
2014-02-21 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-normalize-eol-crlf): New CCL program.
(mime-edit-sign-pgp-mime): Use it to improve speed.
* mime-pgp.el (mime-pgp-decrypt-string)
(mime-verify-application/*-signature-internal): Refactored.
2014-02-15 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-display-entity): Add comment.
2014-02-12 Kazuhiro Ito <[email protected]>
* semi-setup.el: Remove preview setting for multipart/signed part.
Use mime-pgp-verify-when-preview and mime-pgp-decrypt-when-preview
to define visibility conditions.
* mime-view.el (mime-display-entity): insert LF when inserted
content does not end with LF.
* mime-pgp.el (mime-display-multipart/signed): Removed.
(mime-display-multipart/pgp-encrypted): Adapt to recent change.
2014-02-11 Kazuhiro Ito <[email protected]>
* semi-setup.el: Set up for previewing application/pkcs7-mime
part.
* mime-view.el (mime-pgp-verify-when-preview)
(mime-pgp-decrypt-when-preview): Moved from mime-pgp.el.
(mime-display-entity-visible-p): New function.
(mime-display-entity): function, variable, t, and nil are
acceptable for situation of entity-button, header and body.
Function will receive one argument SITUATION and return visible,
invisible, t or nil.
* mime-pgp.el (mime-pgp-verify-when-preview)
(mime-pgp-decrypt-when-preview): Moved to mime-view.el.
(mime-preview-application/pkcs7-mime): New function.
2014-02-08 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-preview-application/pgp-encrypted): Handle
errors in decryption.
2014-02-06 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-pgp-decrypt-string): New function.
(mime-decrypt-application/pgp-encrypted)
(mime-preview-application/pgp-encrypted)
(mime-view-application/pkcs7-mime): Use it. Remove CRs at EOL
from result when there is CR at the first EOL.
2014-01-31 Kazuhiro Ito <[email protected]>
* semi-setup.el: S/MIME signed entity respects
mime-pgp-verify-when-preview's value.
* mime-pgp.el (mime-display-multipart/signed): Renamed from
mime-display-multipart/pgp-signed. Support S/MIME signed entity.
2014-01-30 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-pgp-verify-when-preview): Set default to t.
2014-01-30 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-pgp-verify-when-preview): New customizable
variable.
(mime-display-multipart/pgp-signed): New function.
* semi-setup.el: Add setting for pgp-signed entity.
2014-01-27 Kazuhiro Ito <[email protected]>
* semi-setup.el: Add setting for previewing
application/pkcs7-signature entity.
* mime-pgp.el (mime-preview-application/*-signature): Handle errors.
2014-01-19 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-preview-message): Switch to the original
buffer when translation fails. Moreover, kill temporary buffer
if mime-edit-debug is nil.
2014-01-18 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-debug): New variable.
(mime-edit-translate-buffer): Do not undo if above variable is
non-nil.
2014-01-17 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-translate-buffer): Undo buffer when
translation fails and buffer is modified. Do not catch
mime-edit-error tag, because no one throws in SEMI-EPG.
(mime-edit-sign-pgp-mime, mime-edit-encrypt-pgp-mime)
(mime-edit-sign-smime, mime-edit-encrypt-smime): Remove
condition-case.
2014-01-12 Kazuhiro Ito <[email protected]>
* semi-setup.el: Prevent mime-w3m-insinuate function from
modifying mime-preview-condition and
mime-view-type-subtype-score-alist. Make mime-w3m-insinuate
function to mofidy mime-view-text/html-previewer's value.
2014-01-12 Kazuhiro Ito <[email protected]>
More customizable text/html entity handling. Now you can switch
text/html entity previewer and score by modifying
mime-view-text/html-previewer and mime-view-text/html-score
real-time.
* mime-view.el (mime-view-text/html-score)
(mime-view-text/html-previewer-alist)
(mime-view-text/html-previewer): New variables.
(mime-preview-condition): Set up for text/html entity.
(mime-display-text/html-previewer-params)
(mime-display-text/html): New functions.
(mime-view-text/html-entity-score): New function.
(mime-view-type-subtype-score-alist): Update for text/html entity.
* semi-setup.el (mime-html-previewer-alist)
(mime-setup-enable-inline-html): Obsolete. Use
mime-view-text/html-previewer-alist and
mime-view-text/html-previewer respectively.
2014-01-12 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-view-type-subtype-score-alist): Accept
variable as an alternate of score and function. Remove
entry for default score.
(mime-view-entity-score): Likewise.
2014-01-12 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-view-entity-lowest-score): New variable.
(mime-view-entity-score): Use it.
2014-01-10 Kazuhiro Ito <[email protected]>
* mime-image.el: Check image feature's availability statically.
2013-12-25 Kazuhiro Ito <[email protected]>
* mime-play.el: Use NOERROR option of require funciton instead of
condition-case.
* mime-shr.el: Likewise.
* mime-w3.el: Likewise.
2013-12-20 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-display-multipart/pgp-encrypted): Adapt for
the last change of mime-view.el.
* mime-signature.el (mime-edit-default-signature): Check
mail-signature contains separator.
2013-10-06 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-view-multipart/related-show-all-children):
Renamed from mime-view-multipart-show-all-children.
(mime-display-multipart/related): Likewise.
2013-10-06 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-content-types): Add entry for text/vcard.
(mime-file-types): Add entry for .vcf file.
* semi-setup.el: Define previewer for text/vcard part as well as
text/x-vcard.
* mime-vcard.el (mime-display-text/vcard-hook): Renamed from
mime-display-text/x-vcard-hook. Define explicitly.
(mime-display-text/vcard): Renamed from mime-display-text/x-vcard.
2013-07-20 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-verify-application/*-signature)
(mime-decrypt-application/pgp-encrypted): pass string to
epa-display-info function. This is the fix for the change of
2012-10-06.
2013-06-09 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-verify-application/*-signature-internal)
(mime-verify-application/*-signature)
(mime-preview-application/*-signature): Avoid signaling error when
protocol parameter of Contetn-Type header is incorrect or missing.
2013-02-11 Kazuhiro Ito <[email protected]>
* SEMI-ELS (semi-modules-to-compile): Add mime-signature.el.
* mime-edit.el: Do not require signature.el
(mime-edit-insert-signature): Moved to mime-signature.el and
define atuload for it.
* mime-signature.el: New file.
* semi-setup.el (mime-setup-use-signature): Now nil is default.
2012-12-30 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-pgp-decrypted-buffers): New variable.
(mime-pgp-kill-decrypted-buffers): New function.
(mime-preview-application/pgp-encrypted): Keep decrypted content
until the preview buffer is killed.
* mime-view.el (mime-display-entity): Do not propertize with
mime-view-* properties on already propertized region.
2012-12-23 Kazuhiro Ito <[email protected]>
* semi-def.el (mime-add-condition): Define autoload for method and
body-presentation-method's parameter.
* semi-setup.el: Use mime-add-condtion for preview functions that
require autoload.
2012-12-22 Kazuhiro Ito <[email protected]>
* semi-setup.el: Remove settings for mime-view-application/pgp
function. SEMI-EPG does not have this funciton.
2012-12-22 Kazuhiro Ito <[email protected]>
* mime-pgp.el: Require mmgeneric.el in compiling.
(mime-preview-application/pgp-encrypted): New function. Imported
and modified from Wanderlust.
* semi-setup.el: Add setting for
mime-preview-application/pgp-encrypted.
2012-12-21 Kazuhiro Ito <[email protected]>
* mime-shr.el (mime-shr-blocked-images): Change its customization
gorup to mime-view.
2012-12-19 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-view-multipart-show-all-children): New
customizable variable.
(mime-display-multipart/related): Refer to it.
* mime-pgp.el (mime-display-multipart/pgp-encrypted): Likewise.
2012-12-18 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-pgp-decrypt-when-preview): New customizable
variable.
(mime-display-multipart/pgp-encrypted): New function.
* semi-setup.el: Define autoload and mime-preview-codition's
settings for mime-display-multipart/pgp-encrypted.
2012-12-18 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-encrypt-pgp-nonmime): New function.
2012-10-07 Kazuhiro Ito <[email protected]>
* mime-edit.el: Use mapc instead of mapcar for side effect.
Assume emacs-major-version is greater than 18.
2012-10-06 Kazuhiro Ito <[email protected]>
* mime-pgp.el (mime-verify-application/*-signature)
(mime-decrypt-application/pgp-encrypted): Use epa-display-info
instead of epa-display-verify-result
* mime-image.el (mime-image-normalize-xbm-buffer): Use
string-to-number instead of string-to-int.
* mime-shr.el: Load shr.el at compile time.
2012-10-05 Kazuhiro Ito <[email protected]>
* mime-epg.el: Renamed to mime-pgp.el.
* mime-pgp.el: Renamed from mime-epg.el.
* SEMI-ELS: Likewise.
* semi-setup.el: Likewise.
2012-10-04 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-view-entity-score): New function. The
default score (-1) is hard-coded.
(mime-display-multipart/alternative): Use it.
(mime-view-multipart-entity-score): New function.
(mime-view-type-subtype-score-alist): Add entry for multipart
entity.
2012-09-09 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-insert-file)
(mime-edit-insert-file-as-text): Minor refactoring.
2012-09-08 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-insert-text-file)
(mime-edit-insert-file-as-text): New functions.
(mime-edit-mode-entity-map, mime-edit-menu-list, mime-edit-mode):
Add entry for mime-edit-insert-file-as-text.
2012-09-07 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-insert-file-filename)
(mime-edit-insert-file-charset)
(mime-edit-insert-file-parameters): New functions.
(mime-edit-insert-file): Use them. Capable to define charset
while inserting.
(mime-file-types): Define charset parameter for text files.
2012-09-07 Kazuhiro Ito <[email protected]>
* mime-edit.el (mime-edit-normalize-body): Define charset more
exactly for encoded text entity.
2012-08-25 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-display-text/plain): Minor refactoring.
(mime-display-text/richtext, mime-display-text/enriched): Do not
use `let'.
2012-08-25 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-display-insert-text-content): New function.
(mime-display-text/plain, mime-display-text/richtext)
(mime-display-text/enriched): Use it.
2012-04-30 Kazuhiro Ito <[email protected]>
* semi-setup.el: Fix the case of that
mime-setup-enable-inline-html is nil.
* mime-shr.el (mime-shr-preview-text/html): Delete garbage
overlay.
2012-04-28 MORIOKA Tomohiko <[email protected]>
* README.en: Add coding cookie to specify UTF-8.
2012-04-28 MORIOKA Tomohiko <[email protected]>
* README.ja, README.en: Remove descriptions about CVS and add
description about the new Git repository.
2012-04-28 MORIOKA Tomohiko <[email protected]>
* README.ja, README.en (Required environment): Modify for the new
URLs of APEL and FLIM.
(Mailing lists): Modify for the new Emacs-MIME mailing lists.
2010-11-12 MORIOKA Tomohiko <[email protected]>
* semi-setup.el: Add setting for mime-mac.el if running with Mac
OS X.
2010-11-11 MORIOKA Tomohiko <[email protected]>
* SEMI-ELS (semi-modules-to-compile): Add `mime-mac' if running
with Mac OS X.
* mime-mac.el: New file.
* mime-play.el (mime-save-content): Return filename.
2005-12-25 MORIOKA Tomohiko <[email protected]>
* semi-def.el (mime-user-interface-product): Update to 1.14.7.
2012-04-27 Kazuhiro Ito <[email protected]>
Experimental support of shr (Simple HTML Renderer) for html
entity.
* mime-shr.el: New file.
* semi-setup.el (mime-html-previewer-alist): Likewise.
* SEMI-ELS (top): Likewise.
2012-04-21 Kazuhiro Ito <[email protected]>
* mime-view.el (mime-view-mailcap-files): Reverse the order of
files. Do not care of mime-mailcap-file's value.
(mime-view-read-mailcap-files): The file indicated by