Menu

#3 Checked addresses don't carry over to Compose

open
None
7
2000-07-20
2000-07-20
No

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.

Discussion

  • Bryan Stillwell

    Bryan Stillwell - 2000-07-20
    • priority: 5 --> 7
    • assigned_to: nobody --> ryanhughes
     
  • Robert Del Huerto

    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.

     
  • Nobody/Anonymous

    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%"> <!--#var N_First--> <!--#var
    N_Family--> <<!--#var EMAIL-->> </td>
    To:
    <TD WIDTH="100%"> <!--#var N_First--> <!--#var
    N_Family--> <<!--#var
    "_.string.join(EMAIL,',')"-->> </td>

    This worked for me.
    Ross
    ross@gcs.com.au

     

Log in to post a comment.

Auth0 Logo