Closed
Bug 368626
Opened 19 years ago
Closed 18 years ago
Importer (Win Eudora, Address Book). Mailing list nickname not assigned to 'nickname' in Penelope
Categories
(Thunderbird :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: mdudziak, Assigned: gwenger)
Details
(Whiteboard: fixed-penelope)
Attachments
(2 files)
|
2.44 KB,
patch
|
Bienvenu
:
review+
Bienvenu
:
superreview+
|
Details | Diff | Splinter Review |
|
1.17 KB,
patch
|
Details | Diff | Splinter Review |
The problem is that when you import a group nickname from Eudora, the Eudora nickname is assigned to the Penelope 'List Name' and not the 'List Nickname'. Should probably be assigned to both.
To reproduce:
- In Eudora, create a nickname with 2 or more addresses
- Import Address Book into Penelope
- Note imported nickname has the Eudora 'nickname' mapped to 'List Name' and that the Penelope 'List Nickname' is blank
| Assignee | ||
Updated•19 years ago
|
Product: Penelope → Thunderbird
Target Milestone: 0.5 → ---
Version: 0.1 → unspecified
| Assignee | ||
Comment 1•19 years ago
|
||
Actually it wasn't previously importing mailing list name quite correctly either - it was just using the mailing list nickname as the name. Now imports the name (if any) as the mailing list name (if none, defaults back to using nickname as name) and imports the nickname as the mailing list nickname.
Attachment #262174 -
Flags: superreview?
Attachment #262174 -
Flags: review?
| Assignee | ||
Updated•19 years ago
|
Attachment #262174 -
Flags: superreview?(bienvenu)
Attachment #262174 -
Flags: superreview?
Attachment #262174 -
Flags: review?(bienvenu)
Attachment #262174 -
Flags: review?
| Assignee | ||
Updated•19 years ago
|
Whiteboard: fixed-penelope
Comment 2•18 years ago
|
||
Comment on attachment 262174 [details] [diff] [review]
Patch that fixes bug. Note patch was not created with CVS.
I changed this:
+ if ( !name.IsEmpty() )
+ rv = pDb->AddListName(newRow, name.get());
+ else
+ rv = pDb->AddListName(newRow, pEntry->m_name.get());
into:
rv = pDb->AddListName(newRow, name.IsEmpty() ? pEntry->m_name.get() : name.get());
Attachment #262174 -
Flags: superreview?(bienvenu)
Attachment #262174 -
Flags: superreview+
Attachment #262174 -
Flags: review?(bienvenu)
Attachment #262174 -
Flags: review+
Comment 3•18 years ago
|
||
Updated•18 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 4•18 years ago
|
||
Thanks much for the improvement and for submitting to trunk.
You need to log in
before you can comment on or make changes to this bug.
Description
•