diff options
author | Chris Toshok <toshok@ximian.com> | 2004-04-26 00:49:24 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-04-26 00:49:24 +0800 |
commit | 1f677cb51e827e3efd93585363cd8e1b3d75bb1f (patch) | |
tree | e74d2fe257fe0727bd49d7549aac26f78ab36e74 /addressbook | |
parent | 125ef20ad78d07d73a28eb41dbbcdbc467775318 (diff) | |
download | gsoc2013-evolution-1f677cb51e827e3efd93585363cd8e1b3d75bb1f.tar.gz gsoc2013-evolution-1f677cb51e827e3efd93585363cd8e1b3d75bb1f.tar.zst gsoc2013-evolution-1f677cb51e827e3efd93585363cd8e1b3d75bb1f.zip |
add "mobile" mapping to E_CONTACT_PHONE_MOBILE, which is what thunderbird
2004-04-25 Chris Toshok <toshok@ximian.com>
* importers/evolution-ldif-importer.c (ldif_fields): add "mobile"
mapping to E_CONTACT_PHONE_MOBILE, which is what thunderbird uses
(and really what we should have always been using.)
svn path=/trunk/; revision=25610
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/importers/evolution-ldif-importer.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 3b86e9bfe4..1f9e3a7e01 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2004-04-25 Chris Toshok <toshok@ximian.com> + + * importers/evolution-ldif-importer.c (ldif_fields): add "mobile" + mapping to E_CONTACT_PHONE_MOBILE, which is what thunderbird uses + (and really what we should have always been using.) + 2004-04-23 Jeffrey Stedfast <fejj@ximian.com> * conduit/address-conduit.c (get_next_mail): The firt EMAIL item diff --git a/addressbook/importers/evolution-ldif-importer.c b/addressbook/importers/evolution-ldif-importer.c index c7a883dc4e..e82fd02074 100644 --- a/addressbook/importers/evolution-ldif-importer.c +++ b/addressbook/importers/evolution-ldif-importer.c @@ -75,6 +75,7 @@ ldif_fields[] = { { "ou", E_CONTACT_ORG_UNIT }, { "pagerphone", E_CONTACT_PHONE_PAGER }, { "cellphone", E_CONTACT_PHONE_MOBILE }, + { "mobile", E_CONTACT_PHONE_MOBILE }, { "homeurl", E_CONTACT_HOMEPAGE_URL }, { "description", E_CONTACT_NOTE }, { "xmozillausehtmlmail", E_CONTACT_WANTS_HTML } |