From 7cc5a9bba9ee892bac41fe3af4ae00da846ca96a Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 17 Apr 2011 15:24:24 -0700 Subject: [PATCH] email follow seems to be stabilising --- include/Scrape.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/Scrape.php b/include/Scrape.php index 320e18edbf..05a53e5386 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -339,11 +339,15 @@ function probe_url($url) { $network = NETWORK_MAIL; $name = substr($url,0,strpos($url,'@')); $profile = 'http://' . substr($url,strpos($url,'@')+1); - // fix nick + // fix nick character range $vcard = array('fn' => $name, 'nick' => $name, 'photo' => gravatar_img($url)); $notify = 'smtp'; $poll = 'email'; $priority = 0; + $x = email_msg_meta($mbox,$msgs[0]); + $adr = imap_rfc822_parse_adrlist($x->from,''); + if(strlen($adr[0]->personal)) + $vcard['fn'] = notags($adr[0]->personal); } imap_close($mbox); }