summarylogtreecommitdiffstats
path: root/bbdb.install
diff options
context:
space:
mode:
Diffstat (limited to 'bbdb.install')
-rw-r--r--bbdb.install15
1 files changed, 15 insertions, 0 deletions
diff --git a/bbdb.install b/bbdb.install
new file mode 100644
index 000000000000..902988032191
--- /dev/null
+++ b/bbdb.install
@@ -0,0 +1,15 @@
+post_install() {
+ echo ">> To enable BBDB add this to your .emacs:"
+ echo ">> (require 'bbdb)"
+ echo ">> (bbdb-initialize)"
+}
+
+post_upgrade() {
+ post_install $1
+ echo ">> Update breaks wanderlust compatibility. You need to keep bbdb-2 or intergrate them manually"
+ echo ">> gnus compatibility was also broken. Now initialization should be:"
+ echo ">> (require 'bbdb-loaddefs)"
+ echo ">> (require 'bbdb)"
+ echo ">> (bbdb-initialize 'gnus 'message)"
+ echo ">> (bbdb-mua-auto-update-init 'gnus 'message)"
+}