639097eee10216f0acfc94e562e94ad9a76c32e6
6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
9 * This file shows an attched vcard
14 /* Path for SquirrelMail required files. */
15 Define('SM_PATH','../');
17 /* SquirrelMail required files. */
18 require_once(SM_PATH
. 'include/validate.php');
19 require_once(SM_PATH
. 'functions/date.php');
20 require_once(SM_PATH
. 'functions/page_header.php');
21 require_once(SM_PATH
. 'functions/mime.php');
22 require_once(SM_PATH
. 'include/load_prefs.php');
25 $key = $_COOKIE['key'];
26 $username = $_SESSION['username'];
27 $onetimepad = $_SESSION['onetimepad'];
28 $mailbox = decodeHeader($_GET['mailbox']);
29 $passed_id = (int) $_GET['passed_id'];
30 $ent_id = $_GET['ent_id'];
31 $passed_ent_id = $_GET['passed_ent_id'];
32 $QUERY_STRING = $_SERVER['QUERY_STRING'];
35 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
36 sqimap_mailbox_select($imapConnection, $mailbox);
39 displayPageHeader($color, 'None');
41 echo '<br><table width="100%" border="0" cellspacing="0" cellpadding="2" ' .
42 'align="center">' . "\n" .
43 '<tr><td bgcolor="' . $color[0] . '">' .
45 _("Viewing a Business Card") . " - ";
46 $msg_url = 'read_body.php?' . urlencode(strip_tags(urldecode($QUERY_STRING)));
47 $msg_url = set_url_var($msg_url, 'ent_id', 0);
48 echo '<a href="'.$msg_url.'">'. _("View message") . '</a>';
50 echo '</center></b></td></tr>';
52 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
54 $entity_vcard = getEntity($message,$ent_id);
56 $vcard = mime_fetch_body ($imapConnection, $passed_id, $ent_id);
57 $vcard = decodeBody($vcard, $entity_vcard->header
->encoding
);
58 $vcard = explode ("\n",$vcard);
59 foreach ($vcard as $l) {
60 $k = substr($l, 0, strpos($l, ':'));
61 $v = substr($l, strpos($l, ':') +
1);
62 $attributes = explode(';', $k);
63 $k = strtolower(array_shift($attributes));
64 foreach ($attributes as $attr) {
65 if ($attr == 'quoted-printable')
66 $v = quoted_printable_decode($v);
71 $v = str_replace(';', "\n", $v);
75 if ($vcard_nice['version'] == '2.1') {
76 // get firstname and lastname for sm addressbook
77 $vcard_nice["firstname"] = substr($vcard_nice["n"],
78 strpos($vcard_nice["n"], "\n") +
1, strlen($vcard_nice["n"]));
79 $vcard_nice["lastname"] = substr($vcard_nice["n"], 0,
80 strpos($vcard_nice["n"], "\n"));
82 echo '<tr><td align=center>vCard Version ' . $vcard_nice['version'] .
83 ' is not supported. Some information might not be converted ' .
84 "correctly.</td></tr>\n";
87 foreach ($vcard_nice as $k => $v) {
88 $v = htmlspecialchars($v);
90 $vcard_safe[$k] = trim(nl2br($v));
95 'title' => _("Title"),
96 'email;internet' => _("Email"),
97 'url' => _("Web Page"),
98 'org' => _("Organization / Department"),
99 'adr' => _("Address"),
100 'tel;work' => _("Work Phone"),
101 'tel;home' => _("Home Phone"),
102 'tel;cell' => _("Cellular Phone"),
103 'tel;fax' => _("Fax"),
104 'note' => _("Note"));
106 echo '<tr><td><br>' .
107 '<TABLE border=0 cellpadding=2 cellspacing=0 align=center>' . "\n";
109 if (isset($vcard_safe['email;internet'])) { $vcard_safe['email;internet'] = '<A HREF="../src/compose.php?send_to=' .
110 $vcard_safe['email;internet'] . '">' . $vcard_safe['email;internet'] .
113 if (isset($vcard_safe['url'])) {
114 $vcard_safe['url'] = '<A HREF="' . $vcard_safe['url'] . '">' .
115 $vcard_safe['url'] . '</A>';
118 foreach ($ShowValues as $k => $v) {
119 if (isset($vcard_safe[$k]) && $vcard_safe[$k]) {
120 echo "<tr><td align=right><b>$v:</b></td><td>" . $vcard_safe[$k] .
127 '</td></tr></table>' .
128 '<table width="100%" border="0" cellspacing="0" cellpadding="2" ' .
131 '<td bgcolor="' . $color[0] . '">' .
133 _("Add to Addressbook") .
135 '<tr><td align=center>' .
136 '<FORM ACTION="../src/addressbook.php" METHOD="POST" NAME=f_add>' .
137 '<table border=0 cellpadding=2 cellspacing=0 align=center>' .
138 '<tr><td align=right><b>Nickname:</b></td>' .
139 '<td><input type=text name="addaddr[nickname]" size=20 value="' .
140 $vcard_safe['firstname'] . '-' . $vcard_safe['lastname'] .
142 '<tr><td align=right><b>Note Field Contains:</b></td><td>' .
143 '<select name="addaddr[label]">';
145 if (isset($vcard_nice['url'])) {
146 echo '<option value="' . htmlspecialchars($vcard_nice['url']) .
147 '">' . _("Web Page") . "</option>\n";
149 if (isset($vcard_nice['adr'])) {
150 echo '<option value="' . $vcard_nice['adr'] .
151 '">' . _("Address") . "</option>\n";
153 if (isset($vcard_nice['title'])) {
154 echo '<option value="' . $vcard_nice['title'] .
155 '">' . _("Title") . "</option>\n";
157 if (isset($vcard_nice['org'])) {
158 echo '<option value="' . $vcard_nice['org'] .
159 '">' . _("Organization / Department") . "</option>\n";
161 if (isset($vcard_nice['title'])) {
162 echo '<option value="' . $vcard_nice['title'] .
163 '; ' . $vcard_nice['org'] .
164 '">' . _("Title & Org. / Dept.") . "</option>\n";
166 if (isset($vcard_nice['tel;work'])) {
167 echo '<option value="' . $vcard_nice['tel;work'] .
168 '">' . _("Work Phone") . "</option>\n";
170 if (isset($vcard_nice['tel;home'])) {
171 echo '<option value="' . $vcard_nice['tel;home'] .
172 '">' . _("Home Phone") . "</option>\n";
174 if (isset($vcard_nice['tel;cell'])) {
175 echo '<option value="' . $vcard_nice['tel;cell'] .
176 '">' . _("Cellular Phone") . "</option>\n";
178 if (isset($vcard_nice['tel;fax'])) {
179 echo '<option value="' . $vcard_nice['tel;fax'] .
180 '">' . _("Fax") . "</option>\n";
182 if (isset($vcard_nice['note'])) {
183 echo '<option value="' . $vcard_nice['note'] .
184 '">' . _("Note") . "</option>\n";
188 '<tr><td colspan=2 align=center>' .
189 '<INPUT NAME="addaddr[email]" type=hidden value="' .
190 htmlspecialchars($vcard_nice['email;internet']) . '">' .
191 '<INPUT NAME="addaddr[firstname]" type=hidden value="' .
192 $vcard_safe['firstname'] . '">' .
193 '<INPUT NAME="addaddr[lastname]" type=hidden value="' .
194 $vcard_safe['lastname'] . '">' .
195 '<INPUT TYPE=submit NAME="addaddr[SUBMIT]" ' .
196 'VALUE="Add to Address Book">' .
201 '<tr><td align=center>' .
202 '<a href="../src/download.php?absolute_dl=true&passed_id=' .
203 $passed_id . '&mailbox=' . urlencode($mailbox) .
204 '&passed_ent_id=' . urlencode($passed_ent_id) . '">' .
205 _("Download this as a file") . '</A>' .
206 '</TD></TR></TABLE>' .
208 '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>' .
209 '<TR><TD BGCOLOR="' . $color[4] . '">' .
210 '</TD></TR></TABLE>' .