Re: Problem creating record

2017-06-20 Thread Alan Schmitt
"AdV" == Angel de Vicente  writes:

AdV> The culprit seems to be "ivy". After disabling it, I'm able to
AdV> create a new record in BBDB with M-x bbdb-create, and either C-j or
AdV> just leaving the fields empty gets me out of the infinite "Street
AdV> Address" loop described in my previous message. For the moment I
AdV> can do it manually, though later on I will have to figure out how
AdV> to disable ivy, call bbdb-create and re-enable ivy.

If want to use the current input instead of the current candidate while
ivy is active, you can use `ivy-immediate-done', bound to C-M-j by
default. (This is also useful when creating a file that has a match.)
This works for me when entering records in bbdb.

Best,

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Monthly Athmospheric CO₂, Mauna Loa Obs. 2017-05: 409.65, 2016-05: 407.70


signature.asc
Description: PGP signature
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

Re: can I auto save the bbdb file after each change?

2016-02-08 Thread Alan Schmitt
On 2016-02-06 20:32, "Roland Winkler" <wink...@gnu.org> writes:

> On Fri Feb 5 2016 Alan Schmitt wrote:
>> Thanks a lot for the suggestion! It was simply a matter of:
>> 
>> (add-hook 'bbdb-after-change-hook 'bbdb-save)
>
> bbdb-after-change-hook runs with one argument, the record that was
> changed.  The first arg of bbdb-save is the optional arg PROMPT.  So
> this arg is always non-nil when called by the hook (thus prompting
> before saving).  Is this what you want?
>
> Otherwise use something like
>
> (add-hook 'bbdb-after-change-hook (lambda (arg) (bbdb-save)))

Indeed, I was wondering why there was a prompt. It’s all well now,
thanks a lot.

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Athmospheric CO₂ (Updated February 7, 2016, Mauna Loa Obs.): 405.98 ppm


signature.asc
Description: PGP signature
--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

Re: can I auto save the bbdb file after each change?

2016-02-05 Thread Alan Schmitt
Hello Eric,

On 2016-02-05 18:23, Eric Abrahamsen <e...@ericabrahamsen.net> writes:

> Alan Schmitt <alan.schm...@polytechnique.org> writes:
>
>> Hello,
>>
>> Is there a way to automatically save the bbdb file after each change?
>> I searched for `bbdb*save' but could not find anything relevant.
>
> You'll probably want one of the hooks: look for bbdb-*-hook. I think
> `bbdb-after-change-hook' should do it.

Thanks a lot for the suggestion! It was simply a matter of:

(add-hook 'bbdb-after-change-hook 'bbdb-save)

Thanks again,

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Athmospheric CO₂ (Updated February 4, 2016, Mauna Loa Obs.): 403.08 ppm


signature.asc
Description: PGP signature
--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

can I auto save the bbdb file after each change?

2016-02-04 Thread Alan Schmitt
Hello,

Is there a way to automatically save the bbdb file after each change?
I searched for `bbdb*save' but could not find anything relevant.

Thanks,

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Athmospheric CO₂ (Updated February 3, 2016, Mauna Loa Obs.): 402.43 ppm


signature.asc
Description: PGP signature
--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

Re: bbdb prevents mu4e from sending a message

2015-12-23 Thread Alan Schmitt
On 2015-12-23 13:41, "Roland Winkler"  writes:

> The error means that you try to run some BBDB function or command in
> a buffer using mu4e-compose-mode, yet BBDB doesn't know this mode.
>
> I don't know mu4e, but it looks like mu4e-compose-mode is derived
> from message-mode which you use as an arg for
> bbdb-mua-auto-update-init.  The latter adds bbdb-mua-auto-update to
> message-send-hook.  So if mu4e-compose-mode is derived from
> message-mode, bbdb-mua-auto-update fails.  If you evaluate the
> following (or put it into your emacs init file), does this solve
> your problem?  (This adds mu4e-compose-mode to the modes associated
> with the MUA `message'.)
>
>   (let ((m (assq 'message bbdb-mua-mode-alist)))
> (unless (memq 'mu4e-compose-mode (cdr m))
>   (setcdr m (cons 'mu4e-compose-mode (cdr m)
>
> If this solves the problem, I'll update bbdb-mua-mode-alist
> accordingly.

Yes, this is basically what I ended up doing:
#+begin_src emacs-lisp
(add-to-list 'bbdb-mua-mode-alist '(message mu4e-compose-mode))
#+end_src

Your version is much nicer, so I've adopted it.

Thanks,

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Athmospheric CO₂ (Updated December 13, 2015, Mauna Loa Obs.): 401.31 ppm


signature.asc
Description: PGP signature
--
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

Re: bbdb prevents mu4e from sending a message

2015-12-22 Thread Alan Schmitt
Hello Eric,

On 2015-12-21 21:37, Eric Abrahamsen  writes:

> BBDB checks current modes against the bbdb-muda-mode-alist variable,
> which you should be able to add to. It comes with (mu4e mu4e-view-mode)
> in there, maybe you can add something like (mu4e-message-mode
> message-mode) to the list and see if that works? I haven't looked
> exactly at how that variable is queried, but I'll bet you can trick BBDB
> into letting it pass.

Thank you very much for the suggestion. Here is what I added to my
configuration to make things work:

#+begin_src emacs-lisp
(add-to-list 'bbdb-mua-mode-alist '(message mu4e-compose-mode))
#+end_src

Best,

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Athmospheric CO₂ (Updated December 13, 2015, Mauna Loa Obs.): 401.31 ppm


signature.asc
Description: PGP signature
--
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

bbdb prevents mu4e from sending a message

2015-12-21 Thread Alan Schmitt
Hello,

I'm trying to use both gnus and mu4e, and I'm having an issue when
sending a message from mu4e: I get the following error:

bbdb-mua: BBDB: MUA `mu4e-compose-mode' not supported

I'm using a recent version of BBDB (the Melpa version from November of
this year), and my BBDB setup looks like this:

#+begin_src emacs-lisp
(bbdb-initialize 'gnus 'message)
(bbdb-mua-auto-update-init 'gnus 'message)
#+end_src

I tried adding the 'mu4e symbol to both lines and it's not changing
anything. I don't necessarily want BBDB to work with mu4e: I want to be
able to send messages with mu4e while still using BBDB with gnus. Is
this possible?

I asked this question on the mu4e mailing list, and it seems that the
problems comes from the hook bbdb adds to message mode, which is run in
mu4e-compose-mode as it extends message mode.

Thanks,

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Athmospheric CO₂ (Updated December 13, 2015, Mauna Loa Obs.): 401.31 ppm


signature.asc
Description: PGP signature
--
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

Re: Database Error with v3 from ELPA

2014-02-22 Thread Alan Schmitt
Aric Gregson aorc...@mac.com writes:

 Yes, I think it is in melpa. I can confirm that tomorrow. 

I confirm it's in melpa (it's the version I use).

You can search packages in melpa through their webpage:
http://melpa.milkbox.net/

Alan


--
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121054471iu=/4140/ostg.clktrk
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


BBDB and icicles

2014-02-05 Thread Alan Schmitt
Hello,

I'm trying to use bbdb with icicles, and I'm having some trouble to make
it work. I'm discussing with the author, but in the meantime I have a
couple questions.

First, is anyone able to use bbdb (current version from melpa, which is
Version: 20140123.1541 according to the package list) with icicles? Did
you do anything special to make it work?

Second, it seems that icicles relies on `bbdb-version' to choose whether
to extend bbdb-complete-name or bbdb-complete-mail. However, on my
system, bbdb-version returns:

BBDB version @PACKAGE_VERSION@ (@PACKAGE_DATE@)

which is not helpful at all. Is it a problem from melpa?

Thanks a lot,

Alan

--
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231iu=/4140/ostg.clktrk
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


Re: BBDB and icicles

2014-02-05 Thread Alan Schmitt
Hi Roland,

Roland Winkler wink...@gnu.org writes:

 On Wed Feb 5 2014 Alan Schmitt wrote:
 Second, it seems that icicles relies on `bbdb-version' to choose whether
 to extend bbdb-complete-name or bbdb-complete-mail. However, on my
 system, bbdb-version returns:
 
 BBDB version @PACKAGE_VERSION@ (@PACKAGE_DATE@)
 
 which is not helpful at all. Is it a problem from melpa?

 Yes, this is a problem of Melpa.

I have to admit I've been spoiled by how easy it is to install packages
using Melpa.

I assume you're not the person who put bbdb on Melpa, and that I should
file a bug there. Is this correct?

 If you wait a few more days, BBDB 3.1 will be released. Then it will
 be easier to properly install BBDB then right now when you need a
 rather recent installation of autotools for this.

Great. I'll try again then.

Thanks,

Alan

--
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231iu=/4140/ostg.clktrk
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


Re: BBDB and icicles

2014-02-05 Thread Alan Schmitt
Roland Winkler wink...@gnu.org writes:

 On Wed Feb 5 2014 Alan Schmitt wrote:
 I assume you're not the person who put bbdb on Melpa, and that I
 should file a bug there. Is this correct?

 Based ony my own (limited!) interaction with the melpa guys, I'd
 have little hope that they will respond to such a bug report.  They
 simply grab the lisp code from whatever repository it is in. They do
 not want to get involved in anything beyond that (say, Melpa does
 not provide either the TeX files for printing BBDB).

I understand, but I'll give it a try anyway.

Here is the issue: https://github.com/milkypostman/melpa/issues/1470

Best,

Alan

--
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121051231iu=/4140/ostg.clktrk
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


Re: Address completion question

2012-10-14 Thread Alan Schmitt
Stephen Leake stephen_le...@stephe-leake.org writes:

 Alan Schmitt alan.schm...@polytechnique.org writes:

 Hello,

 When I try to complete and address and several match, after tab I get
 a window with all the possible matches. If I hit tab again I get the
 following message

 #window ... is not a live window

 This sounds like a bug I ran into that was fixed a while ago. Make sure
 you are on the current bbdb head version.

Thank you for the suggestion. I upgraded to head and I don't have the
window error anymore. Now completion does nothing (just shows the
possibilities when there is more than one) when I try it.

Alan

--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


Re: Address completion question

2012-10-14 Thread Alan Schmitt
Roland Winkler wink...@gnu.org writes:

 When I try to complete and address and several match, after tab I get
 a window with all the possible matches. If I hit tab again I get the
 following message
 
 #window ... is not a live window
 
 where ... is a number, and the window is closed. The only time I can
 complete an address is when there is a single match.

 What is tab bound to for you?

tab is bound to message-tab. M-tab is bound to bbdb-complete-mail. I
tried using both tab and M-tab and get the same results.

 By default bbdb-complete-mail gets bound to M-tab. Can you send a
 backtrace of when things go wrong (plus a description of what you did
 to get it)?

Things don't really go wrong anymore (I don't have an error when
upgrading to the head of the git repository). Unfortunately it does not
work as I would like it to.

Here is an example: I have two different people in bbdb whose first name
is Martin. In the To field of a mail (this one, for instance), I type
mart then M-tab. I see a *Completions* buffer open, telling me the two
possible completions. If I type M-tab again, nothing happens. I see a
quick message in the mini-buffer telling me it's doing the completion
list, so I suspect it's recreating the buffer instead of cycling through
the different completions as I would like it to.

I'm a bit of an emacs novice, so I'd need more information about how to
provide a backtrace.

 I have (setq bbdb-complete-mail-allow-cycling t) in my configuration.

 That should not be relevant here.

I thought it would. The documentation says If non-nil cycle mail
addresses when calling `bbdb-complete-mail'. which is exactly what I
want: cycle through the possible completions when completing mails. Am I
reading the documentation wrong?

Thanks,

Alan

--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


Re: Address completion question

2012-10-14 Thread Alan Schmitt
Stephen Leake stephen_le...@stephe-leake.org writes:

 I thought it would. The documentation says If non-nil cycle mail
 addresses when calling `bbdb-complete-mail'. which is exactly what I
 want: cycle through the possible completions when completing mails. Am I
 reading the documentation wrong?

 Note that the doc says addresses, while you said completions; that
 is crucial. 

 I agree it would be nice if it also cycled thru multiple matching records.

I see, thanks for the explanation.

Alan

--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


Re: Address completion question

2012-10-14 Thread Alan Schmitt
Roland Winkler wink...@gnu.org writes:

 On Sun Oct 14 2012 Alan Schmitt wrote:
 Now completion does nothing (just shows the possibilities when
 there is more than one) when I try it.

 What are you trying to do / expecting to get when BBDB opens a
 window with possible completions?

Something like in zsh (and maybe bash): first time display the list of
possible completions, then upon successive tab cycle through the
completions.

For instance, here is when I'm in the bbdb folder in zsh in a terminal:

~/src/bbdb(master ✔) 

I hit cd tab, I get

~/src/bbdb(master ✔) cd
autom4te.cache/  doc/ lisp/tex/   

I hit tab again, I get

~/src/bbdb(master ✔) cd autom4te.cache/
autom4te.cache/  doc/ lisp/tex/   

I hit tab again, I get

~/src/bbdb(master ✔) cd doc/
autom4te.cache/  doc/ lisp/tex/   


 For me, the completions buffer says at the top the usual two lines
 of any completions buffer

   Click mouse-2 on a completion to select it.
   In this buffer, type RET to select the completion near point.

 When I follow this recipe I get what I want (and what was promised).
 What do you get?

Yes, this works. I'm trying to choose a completion without using the
mouse nor moving the point to the window. As I said earlier, I'm a bit
of an emacs novice, so I did not know this was an emacs-provided
feature.

Alan

--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/

Address completion question

2012-10-13 Thread Alan Schmitt
Hello,

When I try to complete and address and several match, after tab I get
a window with all the possible matches. If I hit tab again I get the
following message

#window ... is not a live window

where ... is a number, and the window is closed. The only time I can
complete an address is when there is a single match.

I have (setq bbdb-complete-mail-allow-cycling t) in my configuration.
Am I doing something wrong or is this a bug?

Thanks,

Alan

--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


Re: Address completion question

2012-10-13 Thread Alan Schmitt
Roland Winkler wink...@gnu.org writes:

 Which version of emacs are you using? bbdb-complete-mail uses some
 code for popping up a completion window that only works with GNU
 Emacs 24. I want to replace it with something that works also with
 GNU Emacs 23. But this is still on my to-do list.

I'm on 24.2 (homebrew compiled, os x).

Alan

--
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


Re: bbdb/news-auto-create-p (auto create entries from everything)

2012-08-17 Thread Alan Schmitt
Mitchel Humpherys mitch.spec...@gmail.com writes:

 Thanks, thank did the trick!

 I posted this very question to SO for posterity if you want to go reap
 some rep:
 http://stackoverflow.com/questions/11991940/auto-create-entries-for-all-email-addresses-in-bbdb3
 (otherwise I'll just answer it myself over there).

I answered it there. For the bonus part (not recording addresses for
messages sent to your home address), I suggested you try this:

(setq bbdb-ignore-message-alist (((To CC) . email@home)))

(I have found the documentation of bbdb inside emacs to be great, the
hard part is to find an entry point to start browsing it.)

Alan

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


Re: bbdb/news-auto-create-p (auto create entries from everything)

2012-08-16 Thread Alan Schmitt
Mitchel Humpherys mitch.spec...@gmail.com writes:

 Does bbdbv3 have something similar to bbdb/mail-auto-create-p?

 Basically I just want bbdb to be big brother and auto-create entries
 for every email address I ever see. Ever.

I think you need something like the following:

(bbdb-mua-auto-update-init 'gnus 'message)

(setq bbdb-update-records-p 'query)

You can replace 'query by 'create if you want automatic record creation.

 PS What have people found to be the best source for configuring
 bbdbv3? I've found that nearly everything on emacswiki is for the old
 version... Maybe we should all just start asking questions on
 StackOverflow and let that be the documentation? That approach
 actually seems to work pretty well for some projects...

I'm a complete newbie in the bbdb world, so what I did is ask around
(first on the orgmode mailing list then here). I wrote about it on my
blog
http://blog.petitepomme.net/post/28547901478/installing-and-configuring-bbdb-3

The StackOverflow approach would be nice, if people who know about bbdb
go there.

Alan

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


Re: [BBDB] ChangeLog 2012-08-01

2012-08-02 Thread Alan Schmitt
Roland Winkler wink...@gnu.org writes:

 On Wed Aug 1 2012 Alan Schmitt wrote:
 I have a person that was entered twice in bbdb, with the same name but
 two different mails. I tried to put the cursor on one of the records and
 do a M-x bbdb-merge-record, but when I enter the second mail address,
 I get an error:
 
 Mail address (the current mail address) is used by (the name of the
 person)

 This should be fixed now.

It's working great, thanks a lot.

Alan

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


How to merge to records with identical names?

2012-08-01 Thread Alan Schmitt
Hello,

I have a person that was entered twice in bbdb, with the same name but
two different mails. I tried to put the cursor on one of the records and
do a M-x bbdb-merge-record, but when I enter the second mail address,
I get an error:

Mail address (the current mail address) is used by (the name of the
person)

I guess I'm doing it wrong, but I don't see how to merge two records. If
someone could give me a hand...

Thanks,

Alan

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/


bbdb-mua-edit-field and people in CC

2012-07-28 Thread Alan Schmitt
Hello,

I have a key bound to bbdb-mua-edit-field in summary mode, and I've just
noticed that it only let me edit the field of the sender. The
documentation says it should edit sender or recipients, and I'm
wondering if it's possible to edit both.

Thanks,

Alan Schmitt

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
bbdb-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bbdb-info
BBDB Home Page: http://bbdb.sourceforge.net/