Subject: | Not handling Encodings properly |
Example line from vCard:
ADR;WORK;ENCODING=QUOTED-PRINTABLE:;Corporate;Software
evelopment=0D=0A333 West River Park Drive;Provo;UT;8460=
4;United States of America
Test:
DB<1> use Text::vCard::Addressbook
DB<2> $a = new Text::vCard::Addressbook({source_file=>'Nathan Paul
Christiansen I - other.vcf'});
DB<3> $v = $a->vcards->[0]
DB<4> p $v->get({ node_type=>'ADR', types=>'WORK'})->[0]->street;
Software Development=0D=0A333 West River Park Drive
*** should be "Software Development
333 West River Park Drive"
DB<5> p $v->get({ node_type=>'ADR', types=>'WORK'})->[0]->post_code;
8460=
*** should be "84604"
Subject: | Nathan Paul Christiansen I - other.vcf |
Message body not shown because it is not plain text.