-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
ChangeLog
2602 lines (2178 loc) · 103 KB
/
ChangeLog
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
2023-10-23 Roland Winkler <[email protected]>
Increase version number to 3.2.2d. Update copyright year.
2023-10-22 jao <[email protected]>
Support for notmuch mua.
* lisp/bbdb-notmuch.el: New file with auxiliary functions.
* lisp/bbdb.el (bbdb-init-functions): Register notmuch.
* lisp/bbdb-mua.el (bbdb-message-header, bbdb-mua-update-records)
(bbdb-mua-wrapper): Use the functions in bbdb-notmuch.el.
* lisp/Makefile.am, lisp/makefile-temp: Declare bbdb-notmuch.
* configure.ac, m4/emacs_notmuch: New EMACS_NOTMUCH macro to
declare notmuch's installation directory.
2023-10-22 Roland Winkler <[email protected]>
Silence the compiler.
* lisp/bbdb.el (bbdb-message-headers): Spell out :type.
(bbdb-display-record-one-line): Use delete-char.
2023-10-22 Roland Winkler <[email protected]>
Improve snarfing vCards.
* lisp/bbdb-snarf.el: Require qp.
(bbdb-snarf-vcard-adr-type-re, bbdb-snarf-vcard-tel-type-re): New
user variables.
(bbdb-snarf-vcard-property): Handle encoded vCard properties.
(bbdb-snarf-assoc): New function.
(bbdb-snarf-vcard-adr, bbdb-snarf-vcard-tel): Use it.
2022-07-05 Arash Esbati <[email protected]>
Silence the compiler.
* lisp/bbdb.el, lisp/bbdb-com.el: Fix unescaped single quotes in
docstrings.
2022-04-15 Roland Winkler <[email protected]>
Bug fix. New optional arg ident for bbdb-edit-field.
* lisp/bbdb-com.el (bbdb-edit-field, bbdb-read-name)
(bbdb-read-xfield, bbdb-read-organization)
(bbdb-record-edit-address, bbdb-edit-address-street)
(bbdb-record-edit-phone): New optional arg ident.
* lisp/bbdb-com.el (bbdb-mua-edit-field): Use it.
(bbdb-annotate-message): Bug fix.
* lisp/bbdb.el, configure.ac: Increase version number to 3.2.2b.
2022-03-28 Roland Winkler <[email protected]>
Increase version number to 3.2.2a.
* lisp/bbdb.el, configure.ac: Increase version number to 3.2.2a.
* NEWS: Updated.
2022-03-27 Roland Winkler <[email protected]>
* lisp/bbdb-mua.el (bbdb-message-header): Fix previous patch.
2022-03-26 Roland Winkler <[email protected]>
Support snarfing vCards.
* lisp/bbdb.el (bbdb-utilities-vcard): New custom group.
* lisp/bbdb-snarf.el (bbdb-snarf-rule-alist): New rule vcard.
(bbdb-snarf-vcard, bbdb-snarf-ignore-mail-re): New user variables.
(bbdb-snarf-sanity-check, bbdb-snarf-vcard-property)
(bbdb-snarf-vcard-name, bbdb-snarf-vcard-adr)
(bbdb-snarf-vcard-nickname, bbdb-snarf-vcard-email)
(bbdb-snarf-vcard-tel, bbdb-snarf-vcard-org, bbdb-snarf-vcard-uid)
(bbdb-snarf-vcard-url, bbdb-snarf-vcard-note): New functions.
(bbdb-snarf-vcard, bbdb-snarf-vcard-buffer): New commands.
(bbdb-snarf-paragraph, bbdb-snarf-yank, bbdb-snarf): New optional
arg no-display.
(bbdb-snarf): Discard record if it does not have a name or mail.
(bbdb-snarf-mail-address): Make it more robust.
2022-03-26 Roland Winkler <[email protected]>
* lisp/bbdb.el, configure.ac: Increase version number to 3.2.2.
2022-03-26 Sam Steingold <[email protected]>
* lisp/bbdb-mua.el (bbdb-message-header): For Gnus consider the
parent summary buffer. (Bug#54423)
2022-03-26 Roland Winkler <[email protected]>
* lisp/bbdb.el, lisp/bbdb-site.el.in, lisp/bbdb-com.el,
lisp/bbdb-mua.el, lisp/bbdb-tex.el: Use user-error where
appropriate.
2022-02-23 Roland Winkler <[email protected]>
Bugfix and polish previous patch.
* lisp/bbdb.el (bbdb-mua-auto-action): Fix docstring.
* lisp/bbdb-mua.el (bbdb-accept-message, bbdb-ignore-message)
(bbdb-select-message, bbdb-annotate-message): Fix docstring.
(bbdb-update-records): Fix action query.
2022-02-20 Roland Winkler <[email protected]>
Establish record-addresses associations before annotating records.
* lisp/bbdb.el (bbdb-mua-interactive-action): Renamed from
bbdb-mua-update-interactive-p.
(bbdb-mua-auto-action): Renamed from bbdb-mua-auto-update-p.
(bbdb-mua-action): Renamed from bbdb-update-records-p.
(bbdb-message-clean-mail-function): Renamed from
bbdb-canonicalize-mail-function.
(bbdb-message-ignore-mail-re, bbdb-message-ignore-name-re)
(bbdb-record-address-alist-function): New variables.
(bbdb-offer-to-create): Internal variable removed.
(bbdb-clean-address-components): Use bbdb-message-ignore-mail-re
and bbdb-message-ignore-name-re.
* lisp/bbdb-mua.el (bbdb-mua-interactive-action): Renamed from
bbdb-mua-update-interactive-p.
(bbdb-update-records): Establish record-addresses associations
before annotating records. Use
bbdb-record-address-alist-function.
(bbdb-query-create): Provide return value.
(bbdb-annotate-message): Perform action per record and
address-list.
* README: Update lingo.
2022-02-20 Roland Winkler <[email protected]>
* lisp/bbdb.el, configure.ac: Increase version number to 3.2.1.
2022-02-10 Roland Winkler <[email protected]>
* lisp/bbdb-mua.el (bbdb-mua-update-records): New versions of mu4e
use gnus-article-buffer instead of mu4e~view-buffer-name.
2022-02-10 Roland Winkler <[email protected]>
Update copyright. Quieten compiler.
* lisp/bbdb.el: Require cl-lib.
2021-01-07 Roland Winkler <[email protected]>
* lisp/bbdb-sc.el: Add third arg to define-obsolete-variable-alias
and define-obsolete-function-alias.
2020-09-28 Roland Winkler <[email protected]>
* lisp/bbdb-sc.el (bbdb-sc-attribution-field): Quieten compiler.
2020-09-28 Stefan Monnier <[email protected]>
* lisp/bbdb.el, lisp/bbdb-tex.el, lisp/bbdb-migrate.el: Require
cl-lib.
2020-08-29 David Maus <[email protected]>
Use wl sticky buffer name if necessary.
* lisp/bbdb-wl.el (bbdb/wl-header): Use wl sticky buffer name if
necessary.
2020-08-29 Stefan Monnier <[email protected]>
Use cl-defstruct to define BBDB record type.
* lisp/bbdb-com.el: Use cl-defstruct to define BBDB record type.
* lisp/bbdb-com.el, lisp/bbdb-com.el, lisp/bbdb-snarf.el:
* lisp/bbdb-migrate.el: Use setf to set records.
2020-01-01 Roland Winkler <[email protected]>
* lisp/bbdb-com.el (bbdb-search): New keywords :invert and
:case-fold. Allow arbitrary functions for keyword :bool.
2020-01-01 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-mode): Bind buffer-undo-list to t.
2020-01-01 Roland Winkler <[email protected]>
* lisp/bbdb.el: Declare functions used for insinuation.
(bbdb-init-functions): Renamed from bbdb-init-forms.
2019-09-27 Roland Winkler <[email protected]>
* lisp/bbdb-mua.el (bbdb-mua-auto-update-init): Use
wl-summary-redisplay-hook for wanderlust.
2019-06-08 Roland Winkler <[email protected]>
* bbdb-com.el (bbdb-search-read): When region is active make it
the default string to match.
2019-03-09 Stefan Monnier <[email protected]>
* bbdb-com.el, bbdb.el: Fix some warnings; plus cosmetic changes
* bbdb-com.el, bbdb.el: Use #' to quote functions.
* bbdb-com.el (bbdb-dial): Clarify backslash escaping in regexp.
(bbdb-mail-aliases): η-reduce.
(bbdb-mail-aliases): Use abbrev-symbol.
(bbdb-dial-number): Use bbdb--dial-default.
* bbdb.el: Move variable aliases before their target's definition.
(bbdb-merge-records-function, bbdb-dial-function):
(bbdb-canonicalize-mail-function): Use a non-nil default.
(bbdb--dial-default): New function.
(bbdb-init-forms): Use functions rather than "forms".
(bbdb-initialize): Adjust accordingly.
2018-09-06 Roland Winkler <[email protected]>
Fix support for Wanderlust.
* lisp/bbdb-mua.el (bbdb-mua-mode-alist): Include mime-view-mode.
* lisp/bbdb-wl.el (bbdb/wl-header): Use with-current-buffer.
2018-05-02 Roland Winkler <[email protected]>
* lisp/bbdb-mua.el (bbdb-message-header): Use rmail-get-header.
* lisp/bbdb-rmail.el (bbdb/rmail-header): Remove.
2018-03-30 Roland Winkler <[email protected]>
Unify the handling of new records, new fields and modified fields.
* bbdb.el (bbdb-check-name): Handle both names and akas. New
optional arg warn.
(bbdb-check-mail): New function.
(bbdb-register-record): Use bbdb-check-name and bbdb-check-mail.
New optional arg warn.
(bbdb-change-record): Fix docstring.
* bbdb.el (bbdb-record-set-field):
* bbdb-com.el (bbdb-read-record, bbdb-create-internal):
Use bbdb-check-name and bbdb-check-mail.
* bbdb-com.el (bbdb-record-edit-address): Allow arg address be nil
for new addresses.
(bbdb-record-edit-phone): Operate only on the phone number that we
change.
(bbdb-read-record, bbdb-read-field): Use bbdb-record-edit-phone.
Always use bbdb-record-set-field.
2018-03-26 Roland Winkler <[email protected]>
* bbdb.el (bbdb-register-record): Don't be fooled by existing
records.
2018-03-17 Vincent Belaïche <[email protected]>
* lisp/Makefile.am (abs_target): Make absolute path for
bbdb-loaddefs.el MSWindows aware.
2018-03-17 Roland Winkler <[email protected]>
* bbdb.el (bbdb-register-record): New function renamed from
bbdb-hash-record.
(bbdb-parse-records, bbdb-change-record): Use it.
2018-03-17 Roland Winkler <[email protected]>
* bbdb-com.el (bbdb-create-internal): Bug fix. Support old
calling sequence with warning.
2018-03-02 Stefan Monnier <[email protected]>
* bbdb.el: Add missing "Maintainer:" header
2018-01-06 Roland Winkler <[email protected]>
* configure.ac: Increase version number to 3.2.
2018-01-06 Roland Winkler <[email protected]>
* bbdb-tex.el (bbdb-tex-alist, bbdb-tex-address-layout): Declare
defcustom type.
2018-01-06 Roland Winkler <[email protected]>
* bbdb-vm-aux.el: Don't require VM when compiled.
2018-01-06 Stefan Monnier <[email protected]>
* bbdb-vm.el: Don't require VM when compiled.
Trim the list of required packages from VM.
* bbdb-gnus.el (bbdb-insinuate-gnus):
* bbdb-vm.el (bbdb-insinuate-vm): Use defalias.
2018-01-06 Roland Winkler <[email protected]>
* lisp/bbdb-gnus.el, lisp/bbdb-gnus-aux.el: Split from
lisp/bbdb-gnus.el.
* lisp/bbdb-vm.el, lisp/bbdb-vm-aux.el: Split from
lisp/bbdb-vm.el.
* lisp/Makefile.am, lisp/makefile-temp: Update accordingly.
2017-12-24 Roland Winkler <[email protected]>
* README: Update for elpa.git.
2017-11-17 Stefan Monnier <[email protected]>
Prepare BBDB for elpa.git.
* lisp/bbdb-anniv.el, lisp/bbdb-com.el, lisp/bbdb-ispell.el:
* lisp/bbdb-message.el, lisp/bbdb-mhe.el, lisp/bbdb-migrate.el:
* lisp/bbdb-mu4e.el, lisp/bbdb-mua.el, lisp/bbdb-pgp.el:
* lisp/bbdb-rmail.el, lisp/bbdb-site.el.in, lisp/bbdb-snarf.el:
* lisp/bbdb-tex.el, lisp/bbdb-wl.el, lisp/bbdb.el: Update
copyright notice. Follow conventions for comments. Use
declare-function. Provide arg WHEN for
define-obsolete-function-alias and define-obsolete-variable-alias.
* lisp/bbdb-site.el.in (bbdb-version-date): Remove.
(bbdb-tex-path): Use more flexible default.
* lisp/bbdb.el (bbdb-parse-records): Use function bbdb-version.
(bbdb-version): Use version header if variable bbdb-version is not
set sensibly.
* README, NEWS, TODO, tex/bbdb.sty, doc/bbdb.texi: Update
copyright notice.
2017-10-17 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-parse-records): Bug fix, hash record after
checking for duplicates.
2017-10-11 Roland Winkler <[email protected]>
* configure.ac: Use it.
* lisp/bbdb.el: Mention new mailing list [email protected].
2017-10-11 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-parse-records): Query before migrating BBDB
to new format.
(bbdb-delete-record-internal, bbdb-insert-record-internal)
(bbdb-overwrite-record-internal): Barf if buffer is read-only.
2017-10-11 Roland Winkler <[email protected]>
* lisp/bbdb-com.el (bbdb-search, bbdb-split-maybe): Fix docstring.
(bbdb-read-record): Fix calling sequence for calls to set record.
2017-08-09 Roland Winkler <[email protected]>
* lisp/bbdb-migrate.el (bbdb-migrate-uuid-xfield): New variable.
2017-08-09 Roland Winkler <[email protected]>
New field uuid. Make creation-date and timestamp immutable.
* lisp/bbdb.el (bbdb-create-hook, bbdb-change-hook): Use
defcustom.
(bbdb-merge-records-function): New variable.
(bbdb-layout-alist): Omit uuid.
(bbdb-xfields-sort-order, bbdb-merge-xfield-function-alist):
Ignore creation-date and timestamp.
(bbdb-file-format): Bump to 9.
(bbdb-record-type): Include uuid, creation-date and timestamp.
(bbdb-uuid-table): New variable.
(bbdb-timestamp, bbdb-creation-date): Declare obsolete.
(bbdb-uuid): New function.
(bbdb-hash-record): Hash uuid.
(bbdb-record-field, bbdb-record-set-field, bbdb-buffer)
(bbdb-display-record-one-line, bbdb-display-record-multi-line)
(bbdb-display-record): Handle uuid, creation-date and timestamp.
(bbdb-change-record): Use uuid.
* lisp/bbdb-com.el (bbdb-search): Use keywords for args. Handle
uuid, creation-date and timestamp. New option :bool.
(bbdb, bbdb-search-name, bbdb-search-organization)
(bbdb-search-address, bbdb-search-mail, bbdb-search-phone)
(bbdb-search-xfields, bbdb-mail-aliases, bbdb-get-mail-aliases):
Change accordingly.
(bbdb-compare-records): Compare any fields.
(bbdb-timestamp-older, bbdb-timestamp-newer, bbdb-creation-older)
(bbdb-creation-newer): Fix interactive spec.
(bbdb-creation-no-change): Use bbdb-record-timestamp.
(bbdb-read-record): Use bbdb-empty-record.
(bbdb-create): Fix call of bbdb-change-record.
(bbdb-split-maybe): New function.
(bbdb-create-internal): Use keywords for args.
(bbdb-edit-field, bbdb-edit-foo, bbdb-merge-records): Handle uuid,
creation-date and timestamp.
(bbdb-delete-records): Ignore records not known to BBDB.
* lisp/bbdb-snarf.el (bbdb-snarf)
* lisp/bbdb-mua.el (bbdb-annotate-message): Fix call of
bbdb-change-record.
* lisp/bbdb-migrate.el (bbdb-migration-features): Remove.
(bbdb-peel-the-onion): Merge with bbdb-migrate.
(bbdb-migrate): Handle format 9.
(bbdb-migrate-alist): Rename from bbdb-migration-spec.
(bbdb-migrate-record-lambda): Merge with bbdb-migrate-lambda.
(bbdb-migrate-lambda): Rename from bbdb-migrate-versions-lambda.
(bbdb-migrate-postcode-to-string): Rename from
bbdb-migrate-postcodes-to-strings. Simplify.
(bbdb-migrate-dates): Rename from bbdb-migrate-change-dates.
Simplify.
(bbdb-migrate-add-country): Rename from
bbdb-migrate-add-country-field.
(bbdb-undocumented-variables): Handle byte-obsolete-variable.
2017-07-25 Roland Winkler <[email protected]>
* Makefile.am: Fix rule BBDB_ELPA_FILES. (Bug#51563)
2017-07-25 Roland Winkler <[email protected]>
* lisp/bbdb-tex.el: Improve documentation.
2017-07-25 Roland Winkler <[email protected]>
* lisp/bbdb-tex.el (bbdb-tex): Bug fix. (Bug#51564)
2017-07-21 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-split): Fix previous patch.
2017-07-21 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-split): Use arg TRIM of split-string with
emacs-version >= 24.4.
2017-07-19 Roland Winkler <[email protected]>
* lisp/bbdb-tex.el (bbdb-tex): Allow empty space when calling
\usepackage.
2017-07-19 Roland Winkler <[email protected]>
* tex/bbdb.sty: Use \RequirePackage.
2017-07-19 Roland Winkler <[email protected]>
* lisp/bbdb-tex.el (bbdb-tex-alist): Improve docstring.
2017-07-03 Roland Winkler <[email protected]>
Use LaTeX for TeXing BBDB.
* lisp/bbdb-tex.el: Replacement for lisp/bbdb-print.el.
* lisp/bbdb-site.el.in (bbdb-tex-path): Renamed from
bbdb-print-tex-path. Allow new value t.
* lisp/bbdb.el (bbdb-utilities-tex): Renamed from
bbdb-utilities-print.
(bbdb-separator-alist): New element tex-name. Fix docstring.
* lisp/makefile-temp, lisp/Makefile.am: Use bbdb-tex.
* tex/bbdb-print-brief.tex, tex/bbdb-cols.tex, tex/bbdb-print.tex:
Removed.
* tex/bbdb.sty: New file.
* tex/Makefile.am: Update accordingly.
2017-01-31 Roland Winkler <[email protected]>
* README: Really discontinue support for GNU Emacs 23.
2017-01-30 Barak A. Pearlmutter <[email protected]>
* TODO: Extend feature wishlist.
2017-01-30 Barak A. Pearlmutter <[email protected]>
* README: Add pointer to emacs wiki upgrade page.
2017-01-30 Roland Winkler <[email protected]>
* README, lisp/bbdb-site.el.in: Discontinue support for GNU Emacs
23.
2017-01-28 Roland Winkler <[email protected]>
* lisp/bbdb-anniv.el (bbdb-anniv-diary-entries): Propertize the
strings passed to diary-add-to-list.
(bbdb-anniv-goto-entry): New function used as
diary-goto-entry-function.
2017-01-28 Roland Winkler <[email protected]>
* lisp/bbdb-anniv.el (bbdb-anniv-diary-entries): Use cl-flet.
2017-01-28 Roland Winkler <[email protected]>
* lisp/bbdb-anniv.el: Use lexical binding.
* lisp/bbdb-anniv.el (bbdb-anniv-diary-entries): Use lexical
environment for eval.
2017-01-28 Roland Winkler <[email protected]>
Discontinue support for old GNU Emacs 23.
* lisp/bbdb.el (bbdb-buffer, bbdb-revert):
* lisp/bbdb-com.el (bbdb-complete-mail): Update accordingly.
2017-01-28 Roland Winkler <[email protected]>
Update copyright year in all files.
2016-10-02 Roland Winkler <[email protected]>
* lisp/bbdb-com.el, lisp/bbdb-gnus.el, lisp/bbdb-ispell.el:
* lisp/bbdb-message.el, lisp/bbdb-mhe.el, lisp/bbdb-migrate.el:
* lisp/bbdb-mu4e.el, lisp/bbdb-mua.el, lisp/bbdb-pgp.el:
* lisp/bbdb-print.el, lisp/bbdb-rmail.el, lisp/bbdb-sc.el:
* lisp/bbdb-site.el.in, lisp/bbdb-snarf.el, lisp/bbdb-vm.el:
* lisp/bbdb-wl.el, lisp/bbdb.el: Use lexical binding.
* lisp/bbdb.el (bbdb-alist-with-header): Start name of unused
variables with underscore.
(bbdb-display-record-multi-line, bbdb-display-records): Remove
unused variable.
* lisp/bbdb-com.el (bbdb-omit-record):
* lisp/bbdb-snarf.el (bbdb-snarf-surrounding-space)
(bbdb-snarf-empty-lines):
* lisp/bbdb-migrate.el (bbdb-undocumented-variables): Start name
of unused variables with underscore.
* lisp/bbdb-mua.el (bbdb-get-address-components):
* lisp/bbdb-print.el (bbdb-print-record): Remove unused variable.
* lisp/bbdb-gnus.el: Autoload message-make-domain.
(bbdb/gnus-score-as-text): Start name of unused variables with
underscore.
2016-07-20 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-display-record-one-line)
* lisp/bbdb-snarf.el (bbdb-snarf-label, bbdb-snarf-phone-nanp):
Use 2nd arg of looking-back.
2016-07-20 Roland Winkler <[email protected]>
Update copyright year in all files.
2016-07-20 Roland Winkler <[email protected]>
* lisp/bbdb-mua.el (bbdb-mua-mode-alist): Add support for
mu4e-compose-mode and notmuch-message-mode which are derived from
message-mode.
2016-07-20 Roland Winkler <[email protected]>
* m4/emacs_wl.m4: New file
* configure.ac: Use it.
* NEWS, README: Document support for Wanderlust
2016-07-20 David Maus <[email protected]>
Add basic support for Wanderlust.
* lisp/Makefile.am, lisp/makefile-temp: Support Wanderlust.
* lisp/bbdb-mua.el (bbdb-mua-mode-alist, bbdb-mua)
(bbdb-message-header, bbdb-mua-update-records, bbdb-mua-wrapper):
Add support for Wanderlust.
(bbdb-mua-auto-update-init): Add wanderlust to list of auto-update
muas.
* lisp/bbdb.el (bbdb-init-forms): Add support for Wanderlust.
* lisp/bbdb-wl.el: New file.
2016-07-20 Marco Wahl <[email protected]>
* lisp/bbdb-com.el (bbdb-omit-record): Fix arg list of
bbdb-redisplay-record.
2016-07-20 Roland Winkler <[email protected]>
Make bbdb-hashtable a proper hash table.
* lisp/bbdb.el (bbdb-hashtable): Use make-hash-table.
(bbdb-puthash, bbdb-gethash, bbdb-remhash, bbdb-buffer)
* lisp/bbdb-com.el (bbdb-completion-predicate)
(bbdb-completing-read-records, bbdb-complete-mail): Use it.
2016-07-20 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-add-to-list): Remove.
(bbdb-pushnew, bbdb-pushnewq, bbdb-pushnewt): New macros.
(bbdb-record-set-xfield, bbdb-record-set-field)
(bbdb-merge-concat-remove-duplicates, bbdb-parse-records)
(bbdb-change-record)
* lisp/bbdb-com.el (bbdb-mail-aliases, bbdb-get-mail-aliases)
(bbdb-add-mail-alias)
* lisp/bbdb-mua.el (bbdb-update-records): Use them.
2015-11-14 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-auto-revert, bbdb-dedicated-window)
(bbdb-default-domain, bbdb-mua-pop-up)
(bbdb-horiz-pop-up-window-size, bbdb-xfields-sort-order)
(bbdb-mua-summary-unification-list, bbdb-mail-avoid-redundancy)
* lisp/bbdb-snarf.el (bbdb-snarf-address-us-country)
(bbdb-snarf-address-eu-country)
* lisp/bbdb-anniv.el (bbdb-anniv-alist)
* lisp/bbdb-vm.el (bbdb/vm-virtual-real-folders)
* lisp/bbdb-gnus.el (bbdb/gnus-score-default)
(bbdb/gnus-split-myaddr-regexp, bbdb/gnus-split-private-field)
(bbdb/gnus-split-public-field)
* lisp/bbdb-sc.el (bbdb-sc-update-attrib-p): Fix defcustom.
2015-11-08 Roland Winkler <[email protected]>
Add new snarfing rule eu for many continental European countries.
Improve snarfing algorithm.
* lisp/bbdb-snarf.el (bbdb-snarf-rule-alist): Add new rule eu.
(bbdb-snarf-phone-nanp-regexp, bbdb-snarf-postcode-us-regexp)
(bbdb-snarf-url-regexp): Improve regexp. Use first subexpression.
(bbdb-snarf-mail-regexp): New variable.
(bbdb-snarf-mail): Use it.
(bbdb-snarf-address-us-country): New variable.
(bbdb-snarf-address-us): Use it. Check whether we actually
snarfed an address.
(bbdb-snarf-phone-eu-regexp, bbdb-snarf-postcode-eu-regexp)
(bbdb-snarf-address-eu-country): New variables.
(bbdb-snarf-label): Use save-match-data.
(bbdb-snarf-phone-nanp): Use save-match-data. Reverse order of
snarfed phone numbers.
(bbdb-snarf-phone-eu, bbdb-snarf-address-eu): New functions.
2015-11-08 Roland Winkler <[email protected]>
Simplify re-sorting of records when a record has been changed.
Re-display re-sorted records.
* lisp/bbdb.el (bbdb-need-to-sort): Removed.
(bbdb-record-set-name): Simplify accordingly.
(bbdb-record-set-sortkey): Always evaluate new sortkey.
(bbdb-record-sortkey): Simplify accordingly.
(bbdb-change-record): Sort records if we have a new sort key.
(bbdb-redisplay-record-globally): Rename from
bbdb-maybe-update-display. New optional arg sort.
(bbdb-delete-record-internal, bbdb-insert-record-internal): Do not
unset sort key.
(bbdb-display-records): Put point at beginning of buffer.
(bbdb-redisplay-record): New optional arg sort. Throw error if
record was not displayed previously.
(bbdb-sort-records): Clarify status message. Redisplay sorted
records.
* lisp/bbdb-com.el (bbdb-fix-records): Sort records.
(bbdb-create, bbdb-create-internal, bbdb-merge-records): Use nil
for unused second arg of bbdb-change-record.
(bbdb-edit-field, bbdb-transpose-fields): Do not worry about
re-sorting records.
* lisp/bbdb-mua.el (bbdb-annotate-message): Use nil
for unused second arg of bbdb-change-record.
2015-09-10 Roland Winkler <[email protected]>
* lisp/bbdb-anniv.el, lisp/bbdb-mu4e.el, lisp/bbdb-print.el:
* lisp/bbdb-snarf.el, lisp/bbdb-com.el, lisp/bbdb-message.el:
* lisp/bbdb-mua.el, lisp/bbdb-rmail.el, lisp/bbdb-gnus.el:
* lisp/bbdb-mhe.el, lisp/bbdb-pgp.el, lisp/bbdb-sc.el:
* lisp/bbdb-vm.el, lisp/bbdb-ispell.el, lisp/bbdb-migrate.el:
* lisp/bbdb-site.el.in, lisp/bbdb.el: Conform to Emacs Lisp
package format convention.
(Bug#45910)
2015-09-10 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-separator-alist): Use two newline characters
to separate records.
2015-09-07 Roland Winkler <[email protected]>
* lisp/bbdb-com.el (bbdb-search-changed): Fix docstring.
2015-09-07 Roland Winkler <[email protected]>
* lisp/bbdb-com.el (bbdb-delete-field-or-record): Use delete for
phone and address fields.
2015-09-07 Roland Winkler <[email protected]>
* lisp/bbdb-com.el (bbdb-copy-records-as-kill): Fix docstring.
Delete unused local variable marker.
2015-09-07 Roland Winkler <[email protected]>
* lisp/bbdb-com.el (bbdb-copy-fields-as-kill): New command.
* lisp/bbdb.el (bbdb-separator-alist, bbdb-mode-map): Update
accordingly.
2015-05-23 Eric Abrahamsen <[email protected]>
* lisp/bbdb.el (bbdb-record-set-field, bbdb-parse-records): Use
equal for comparison when populating lists of labels.
2015-05-22 Roland Winkler <[email protected]>
Add basic support for mu4e mailer.
* NEWS, README: Update accordingly.
* m4/emacs_mu4e.m4: New file.
* configure.ac: Use it.
* lisp/bbdb-mu4e.el: New file.
* lisp/Makefile.am, lisp/makefile-temp: Compile it.
* lisp/bbdb.el (bbdb-init-forms): Add entry for mu4e.
(bbdb-initialize): Update docstring.
* lisp/bbdb-mua.el: Define mu4e~view-buffer-name.
(bbdb-mua-mode-alist): Add element for mu4e.
(bbdb-mua): Update docstring.
(bbdb-mua-update-records, bbdb-mua-wrapper): Handle mu4e.
2015-05-22 Roland Winkler <[email protected]>
Remove variables bbdb/MUA-update-records-p.
* lisp/bbdb-mua.el (bbdb-update-records): Rely only on arg
update-p.
* lisp/bbdb-gnus.el (bbdb/gnus-update-records-p): Remove.
* lisp/bbdb-message.el (bbdb/mail-update-records-p)
(bbdb/message-update-records-p): Remove.
* lisp/bbdb-mh.el (bbdb/mh-update-records-p): Remove.
* lisp/bbdb-rmail.el (bbdb/rmail-update-records-p): Remove.
* lisp/bbdb-vm.el (bbdb/vm-update-records-p): Remove.
* README, NEWS: Update accordingly.
2015-05-22 Roland Winkler <[email protected]>
Handle prefix command bbdb-do-all-records more robustly.
* lisp/bbdb.el (bbdb-do-all-records): New variable.
(bbdb-modeline-info): Add two new slots.
(bbdb-mode): Use them.
* lisp/bbdb-com.el (bbdb-prefix-message): New function.
(bbdb-do-all-records, bbdb-do-records): Use variable
bbdb-do-all-records.
(bbdb-append-display-p): Update displayed message.
(bbdb-append-display): Use bbdb-prefix-message.
(bbdb-search-invert): Ditto. Simplify.
2015-05-22 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-redisplay-record): Display an undisplayed
record only if we do not want to delete it.
(bbdb-maybe-update-display): Only consider records that are
already displayed. Improve docstring.
2015-05-22 Roland Winkler <[email protected]>
Update copyright year in all files.
2014-08-30 Roland Winkler <[email protected]>
* lisp/bbdb-print.el (bbdb-print-require): Improve docstring.
2014-08-30 Roland Winkler <[email protected]>
* lisp/bbdb-print.el (bbdb-print): Clarify prompt for file name.
Issue message on what to do with TeX file.
2014-08-30 Roland Winkler <[email protected]>
* lisp/bbdb-print.el (bbdb-print-record): Handle xfields the value
of which are sexps.
2014-08-09 Roland Winkler <[email protected]>
* lisp/bbdb-snarf.el (bbdb-snarf): Always install and display the
new record.
2014-08-01 Roland Winkler <[email protected]>
* lisp/bbdb-com.el (bbdb-mail-alias-list): New function.
(bbdb-add-mail-alias): Handle multiple records via * prefix.
Allow addition or deletion of multiple aliases per record. Fix
docstring.
2014-08-01 Roland Winkler <[email protected]>
* lisp/makefile-temp: Fix previous change.
2014-07-22 Roland Winkler <[email protected]>
* lisp/Makefile.am: Do not load init files or site files for byte
compilation (Bug#42482). Use long options.
* lisp/makefile-temp: Ditto. New variable emacs_compile.
2014-05-15 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-redisplay-record): Delete record from
bbdb-records if record is undisplayed.
* lisp/bbdb-com.el (bbdb-omit-record): Simplify. Handle records at
beginning and end of bbdb-buffer properly.
2014-05-15 Roland Winkler <[email protected]>
Fix and improve previous patch.
* lisp/bbdb.el (bbdb-update-unchanged-records): Renamed from
bbdb-save-unchanged-records.
(bbdb-with-print-loadably): Put at beginning of bbdb.el.
(bbdb-change-record): Return record only if we updated it.
* lisp/bbdb-com.el (bbdb-touch-records): Use
bbdb-update-unchanged-records.
(bbdb-insert-field, bbdb-edit-field): Issue message if record
remained unchanged.
2014-05-12 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-change-record): If an editing command did not
change a record compared to its value in bbdb-buffer, do not call
bbdb-change-hook and do not save it.
(bbdb-save-unchanged-records): New internal variable.
* lisp/bbdb-com.el (bbdb-touch-records): New command.
2014-05-12 Roland Winkler <[email protected]>
* lisp/makefile-temp: Create bbdb-pkg.el from bbdb-pkg.el.in.
2014-05-06 Roland Winkler <[email protected]>
Do not treat bbdb-change-hook special when inside
bbdb-notice-mail-hook or bbdb-notice-record-hook.
* lisp/bbdb.el (bbdb-notice-mail-hook, bbdb-notice-record-hook):
Update docstring.
(bbdb-notice-hook-pending): Remove.
(bbdb-change-record): Always call bbdb-change-hook if a record was
changed.
* lisp/bbdb-mua.el (bbdb-update-records, bbdb-annotate-message):
Change accordingly.
2014-05-06 Roland Winkler <[email protected]>
Allow arbitrary lisp expressions as values of xfields.
* lisp/bbdb.el (bbdb-record-type): Update accordingly.
(bbdb-string-trim): New optional arg null.
(bbdb-record-xfield-intern): Return xfield value unmodified if it
is not a string.
(bbdb-record-xfield-string): New function.
(bbdb-record-xfield-split): Throw error if xfield value is not a
string.
(bbdb-record-set-xfield, bbdb-record-set-field)
(bbdb-merge-xfield, bbdb-display-record-one-line)
(bbdb-display-record-multi-line)
* lisp/bbdb-com.el (bbdb-search, bbdb-read-field)
(bbdb-edit-field, bbdb-read-xfield): Allow xfield values that are
not a string.
(bbdb-add-mail-alias): Simplify.
2014-05-06 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-parse-postcode): Finish immediately if one
test succeeds.
2014-04-27 Roland Winkler <[email protected]>
* configure.ac: Increase BBDB version number to 3.1.2.
* NEWS: Update for release.
2014-04-12 Roland Winkler <[email protected]>
Be more careful that empty strings do not pollute the data base.
* lisp/bbdb.el (bbdb-list-strings): New function.
(bbdb-record-set-field): Use it.
(bbdb-record-set-xfield): Clean up.
* lisp/bbdb-com.el (bbdb-fix-records): New command.
(bbdb-read-organization, bbdb-complete-mail): Check emacs version
properly.
2014-04-12 Roland Winkler <[email protected]>
Check type of record data structures more carefully.
* lisp/bbdb.el (bbdb-check-type): Simplify. New arg `extended'.
* lisp/bbdb-com.el (bbdb-create-internal): Bug fix.
2014-04-12 Barak A. Pearlmutter <[email protected]>
* lisp/Makefile.am: Include makefile-temp in distribution.
2014-04-12 Roland Winkler <[email protected]>
* lisp/bbdb-site.el.in: Be more verbose about what we want.
2014-04-12 Roland Winkler <[email protected]>
* lisp/makefile-temp: Obey proper dependencies. Clean up.
2014-04-12 Roland Winkler <[email protected]>
* lisp/bbdb-vm.el, m4/emacs_vm.m4: Require vm-autoloads.
2014-04-12 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-separator-alist): Treat AKAs consistent with
other fields.
2014-03-11 Barak A. Pearlmutter <[email protected]>
Generate lisp/bbdb-site.el via lisp/Makefile as pkgdatadir is only
known at "make" time.
* configure.ac: Remove lisp/bbdb-site.el from autoconfig files.
Increase BBDB version number to 3.1.1
* lisp/Makefile.am: Generate lisp/bbdb-site.el.
* lisp/bbdb-site.el.in: Initialize bbdb-print-tex-path with a
placeholder for pkgdatadir.
2014-03-11 Barak A. Pearlmutter <[email protected]>
* Makefile.am: Install files COPYING, ChangeLog, AUTHORS, NEWS,
README, and TODO in the doc directory.
* doc/Makefile.am: Install bbdb.pdf in the doc directory.
2014-03-11 Barak A. Pearlmutter <[email protected]>
* m4/package_date.m4: Use "date -u" if "date --rfc-3339" fails.
2014-02-28 Roland Winkler <[email protected]>
* configure.ac: Increase BBDB version number to 3.1.
* README: Update accordingly. Fix typos.
* Makefile.am: Include autogen.sh in distribution.
* lisp/Makefile.am: Include lisp/bbdb-pkg.el in distribution.
* lisp/makefile-temp: Include lisp/bbdb-pkg.el.
2014-02-28 Roland Winkler <[email protected]>
Do not use `prompt' in a non-emacs sense.
* lisp/bbdb.el: Do not autoload bbdb-search and bbdb-search-prompt
when compiling.
(bbdb-auto-revert, bbdb-silent, bbdb-default-domain)
(bbdb-default-area-code, bbdb-offer-to-create)
(bbdb-update-records-address): Fix docstring.
* lisp/bbdb-com.el (bbdb-search-read): Renamed from
bbdb-search-prompt.
(bbdb, bbdb-search-name, bbdb-search-organization)
(bbdb-search-address, bbdb-search-mail, bbdb-search-phone)
(bbdb-search-xfields): Change accordingly.
(bbdb-read-record, bbdb-create, bbdb-completing-read-records): Fix
docstring.
(bbdb-read-field): Renamed from bbdb-prompt-for-new-field. Use
arg flag instead of current-prefix-arg. Add docstring.
(bbdb-insert-field): Change accordingly. Fix docstring.
(bbdb-edit-foo): Change accordingly.
* lisp/bbdb-mua.el (bbdb-query-create): Renamed from
bbdb-prompt-for-create.
(bbdb-update-records)
* lisp/bbdb.el (bbdb-insert-field-menu): Change accordingly.
2014-02-28 Roland Winkler <[email protected]>
* lisp/bbdb.el: Do not autoload bbdb-search and bbdb-search-prompt
when compiling.
(bbdb-address-format-list, bbdb-buffer, bbdb-revert-buffer)
* lisp/bbdb-com.el (bbdb-complete-mail): Fix docstring.
2014-02-17 Roland Winkler <[email protected]>
* lisp/bbdb-mua.el (bbdb-update-records): If value of arg update-p
is a function, evaluate it repeatedly as many times as needed.
2014-02-16 Roland Winkler <[email protected]>
* lisp/bbdb-mua.el (bbdb-update-records): Bug fix for previous
commit. Allow value of update-p being create, too.
2014-02-15 Roland Winkler <[email protected]>
* lisp/bbdb-mua.el (bbdb-update-records): Always evaluate arg
update-p twice if its value is a function.
2014-01-23 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-puthash, bbdb-record-set-xfield)
(bbdb-record-set-field, bbdb-parse-records, bbdb-change-record):
Bugfix, make 'eq the 4th arg of add-to-list.
2014-01-23 Stefan Monnier <[email protected]>
* lisp/bbdb.el (bbdb-read-string): In
minibuffer-local-completion-map remove the binding of SPC to
minibuffer-complete-word and of ? to minibuffer-completion-help.
2014-01-12 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-pop-up-window-simple): New function.
(bbdb-pop-up-window): Use it. Make sure the *BBDB* buffer exists.
Use display-buffer as an alternative to pop-up-buffer if the
*BBDB* buffer is not selected. Use the tallest window even if
bbdb-pop-up-window-size is 1.0.
(bbdb-pop-up-window-size): Fix docstring accordingly.
* lisp/bbdb-com.el (bbdb-complete-mail-cleanup): Do not call
bbdb-pop-up-window before we created for sure the *BBDB* buffer.
2014-01-12 Roland Winkler <[email protected]>
Provide auto completion for streets and postcodes known to BBDB.
* lisp/bbdb.el (bbdb-street-list, bbdb-postcode-list): New
internal variables.
(bbdb-record-set-xfield, bbdb-parse-records)
* lisp/bbdb-com.el (bbdb-record-edit-address)
(bbdb-edit-address-default): Use them.
2014-01-08 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-canonical-hosts, bbdb-canonicalize-mail-1)
(bbdb-message-clean-name-default): Move here from bbdb-mua.el.
2014-01-08 Roland Winkler <[email protected]>
Provide auto completion for cities, states and countries known to
BBDB.
* lisp/bbdb.el (bbdb-city-list, bbdb-state-list)
(bbdb-country-list): New internal variables.
(bbdb-add-to-list): New function.
(bbdb-puthash, bbdb-merge-concat-remove-duplicates)
(bbdb-change-record): Use add-to-list.
(bbdb-record-set-xfield, bbdb-parse-records): Use add-to-list and
bbdb-add-to-list. Collect cities, states and countries known to
BBDB.
* lisp/bbdb-com.el (bbdb-record-edit-address)
(bbdb-edit-address-default): Provide auto completion for cities,
states and countries.
2014-01-03 Roland Winkler <[email protected]>
Update copyright year in all files.
2014-01-03 Roland Winkler <[email protected]>
Avoid hard-coded references to xfield notes.
* lisp/bbdb.el (bbdb-default-xfield, bbdb-edit-foo)
(bbdb-annotate-field, bbdb-mua-edit-field): New variables.
(bbdb-auto-notes-rules): Fix docstring.
* lisp/bbdb-com.el (bbdb-edit-foo): New command.
(bbdb-search, bbdb-read-record): Use bbdb-default-xfield.
(bbdb-insert-field): Do not handle initial value.
(bbdb-prompt-for-new-field): Replace arg init by arg record to
handle initial value here.
* lisp/bbdb.el (bbdb-insert-field-menu): Change accordingly.
* lisp/bbdb-mua.el (bbdb-annotate-record): Use
bbdb-annotate-field. Allow empty strings for removing an xfield.
(bbdb-mua-annotate-field-interactive): New function.
(bbdb-mua-annotate-sender, bbdb-mua-annotate-recipients): Use it.
New optional arg field.
(bbdb-mua-edit-field-interactive, bbdb-mua-edit-field)
(bbdb-mua-edit-field-sender, bbdb-mua-edit-field-recipients): Use
variable bbdb-mua-edit-field.
(bbdb-mua-edit-field-recipients): Use bbdb-default-xfield.
* lisp/bbdb-snarf.el (bbdb-snarf-notes): Use bbdb-default-xfield.
2014-01-03 Roland Winkler <[email protected]>
After editing always update display in all BBDB buffers.
* lisp/bbdb.el (bbdb-delete-record-internal): Rename optional arg
remhash to completely. Undisplay record if non-nil.
(bbdb-maybe-update-display): Update record in all BBDB buffers.
(bbdb-change-record): Call it.
(bbdb-redisplay-records): Remove.
(bbdb-undisplay-records): New optional arg all-buffers.
(bbdb-revert-buffer): Use it.
* lisp/bbdb-com.el (bbdb-insert-field, bbdb-transpose-fields)
(bbdb-delete-field-or-record, bbdb-delete-records)
(bbdb-merge-records, bbdb-sort-addresses, bbdb-sort-phones)
(bbdb-sort-xfields, bbdb-add-mail-alias)
* lisp/bbdb-mua.el (bbdb-mua-edit-field): Do not call
bbdb-maybe-update-display.
* README: update accordingly.
2014-01-03 Roland Winkler <[email protected]>
Clean up supercite support.
* lisp/bbdb.el (bbdb-utilities-sc): New custom group
(bbdb-initialize): Update docstring.
* lisp/bbdb-sc.el: Update doc.
(bbdb-sc-attribution-field): Rename from
bbdb/sc-attribution-field, keeping the old name as obsolete alias.
(bbdb-sc-update-records-p): New variable.
(bbdb-sc-update-attrib-p): Rename from bbdb/sc-replace-attr-p.
(bbdb-sc-last-attrib): Rename from bbdb/sc-last-attribution. Make
it internal variable.
(bbdb-sc-set-attrib): Rename from bbdb/sc-set-attr, keeping the
old name as obsolete alias.
(bbdb-sc-update-from): Rename from bbdb/sc-default, keeping the
old name as obsolete alias.
2014-01-03 Roland Winkler <[email protected]>
Overhaul lisp/bbdb-pgp.el for BBDB 3.
* lisp/bbdb-pgp.el (bbdb-pgp-field): Rename from bbdb/pgp-field.
(bbdb-pgp-default): Rename from bbdb/pgp-default-action.
(bbdb-pgp-ranked-actions, bbdb-pgp-headers)
(bbdb-pgp-method-alist): New variables.
(bbdb/pgp-quiet): Obsolete.
(bbdb-pgp-method): Rename from bbdb/pgp-method. Include support
for PGP-auto format.
(bbdb-read-xfield-pgp-mail): New function.
(bbdb-pgp): Rename from bbdb/pgp-sign. Make it a command.
Consider all message recipients in bbdb-pgp-headers. Use
bbdb-pgp-ranked-actions, bbdb-pgp-headers, and
bbdb-pgp-method-alist.
* lisp/bbdb.el (bbdb-utilities-pgp): New custom group
(bbdb-init-forms): Add init form for bbdb-pgp.
(bbdb-initialize): Update docstring accordingly.
* lisp/Makefile.am, lisp/makefile-temp: Support
lisp/bbdb-pgp.el.
2014-01-03 Gijs Hillenius <[email protected]>
* lisp/bbdb-pgp.el: Adapt for BBDB 3. Remove outdated mailcrypt
interface.
(bbdb/pgp-method): New default mml-pgpmime.
(bbdb/pgp-get-pgp): Use bbdb-message-search and bbdb-record-field.
2014-01-03 Kevin Davidson <[email protected]>
* lisp/bbdb-pgp.el: New file (taken from BBDB 2).
2014-01-03 Roland Winkler <[email protected]>
More flexible editing of xfields.
* lisp/bbdb.el (bbdb-read-string): Rename optional arg default to
init. New optional arg require-match.
* lisp/bbdb-com.el (bbdb-read-organization)
(bbdb-record-edit-address, bbdb-completing-read-mails): Rename
optional arg default to init.
(bbdb-insert-field): Simplify.
(bbdb-read-xfield): New function.
(bbdb-prompt-for-new-field, bbdb-edit-field): Use it.
2014-01-03 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-init-forms): Add init form for anniv.
(bbdb-initialize): Update docstring accordingly.
* lisp/bbdb-anniv.el: Update doc accordingly.
2014-01-03 Roland Winkler <[email protected]>
Clean up handling of redundant email addresses.
* lisp/bbdb.el (bbdb-ignore-redundant-mails): Rename from
bbdb-canonicalize-redundant-mails, keeping the latter as obsolete
alias.
(bbdb-add-mails, bbdb-canonicalize-mail-function): Fix docstring.
* lisp/bbdb-com.el (bbdb-mail-redundant-re): New function
(bbdb-delete-redundant-mails): Move here from lisp/bbdb-mua.el.
Merge with command bbdb-delete-duplicate-mails and make the latter
an obsolete alias. New optional args query and update.
* lisp/bbdb-mua.el (bbdb-annotate-message): Use
bbdb-mail-redundant-re and bbdb-delete-redundant-mails.
(bbdb-mail-redundant-p): Remove.
(bbdb-canonical-hosts): Update docstring.
2014-01-03 Roland Winkler <[email protected]>
Check more carefully/frequently that BBDB is editable.
* lisp/bbdb.el (bbdb-editable): Move here from lisp/bbdb-com.el.
Revert BBDB buffer if possible.
* lisp/bbdb.el (bbdb-record-set-field)
* lisp/bbdb-com.el (bbdb-read-record, bbdb-create-internal)
(bbdb-merge-records, bbdb-sort-addresses, bbdb-sort-phones)
(bbdb-sort-xfields)
* lisp/bbdb-snarf.el (bbdb-snarf): Check that BBDB is editable.
* lisp/bbdb-mua.el (bbdb-update-records): Obey bbdb-read-only.
(bbdb-annotate-message): Ignore bbdb-read-only.
(bbdb-auto-notes): Check that BBDB is editable.
2014-01-03 Roland Winkler <[email protected]>
* lisp/bbdb.el (bbdb-check-name, bbdb-extract-address-components):