Checked addresses don't carry over to Compose
Brought to you by:
ryanhughes
While in the addressbook there are check boxes next to each address that you can select. In 1.0.4 you could check a few addresses and when you hit the compose button they would show up in the To: field. That feature doesn't seem to be working in 1.1.0alpha3.
I noticed that when an e-mail address gets pulled from the address list it appears as:
<['name@domain.com']>
instead of:
<name@domain.com>
and if a user has multiple e-mail addresses then they appear as:
<['name1@domain.com', 'name2@domain.com', 'name3@domain.com']>
can the e-mail field in the address list be switched back to a 'text' input field instead of a 'textarea'? I'll keep looking through the source code to see if I can do it but I'm fairly new to Python.
Logged In: NO
This can be fixed by making the following change to
Components/AddressCards.py in class
WorldPilotAddressCardsFolder, def getEmails:
Change: email=email+" <" + card.EMAIL + ">"
To: email=email+" <" + string.join(card.EMAIL,',') + ">"
also in Resource.py, change line 5012 (I think):
<TD WIDTH="100%">&nbsp;<!--#var N_First--> <!--#var
N_Family--> &lt;<!--#var EMAIL-->&gt;&nbsp;</td>
To:
<TD WIDTH="100%">&nbsp;<!--#var N_First--> <!--#var
N_Family--> &lt;<!--#var
"_.string.join(EMAIL,',')"-->&gt;&nbsp;</td>
This worked for me.
Ross
ross@gcs.com.au