summaryrefslogtreecommitdiff
path: root/alot/addressbooks.py
diff options
context:
space:
mode:
authorJakob <jakob@pipefour.org>2012-04-02 23:44:56 -0700
committerJakob <jakob@pipefour.org>2012-04-02 23:44:56 -0700
commit287884e39e4d220ba78d8aeb1456be5ebd550ccc (patch)
tree78d2094346bd19f0f84764bc57a5ad3f37b9a227 /alot/addressbooks.py
parent2cb5996bc6cea048b981ea26bdfe90d8ae7dcd60 (diff)
Support multiple emails per abook contact.
Issue #424.
Diffstat (limited to 'alot/addressbooks.py')
-rw-r--r--alot/addressbooks.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/alot/addressbooks.py b/alot/addressbooks.py
index d3d6936c..47e77266 100644
--- a/alot/addressbooks.py
+++ b/alot/addressbooks.py
@@ -44,8 +44,11 @@ class AbookAddressBook(AddressBook):
def get_contacts(self):
c = self._config
- return [(c[id]['name'], c[id]['email']) for id in c.sections if \
- c[id]['email'] is not None]
+ res = []
+ for id in c.sections:
+ for email in c[id]['email']:
+ res.append((c[id]['name'], email))
+ return res
class MatchSdtoutAddressbook(AddressBook):