mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
email follow seems to be stabilising
This commit is contained in:
parent
12571c42f1
commit
7cc5a9bba9
1 changed files with 5 additions and 1 deletions
|
@ -339,11 +339,15 @@ function probe_url($url) {
|
||||||
$network = NETWORK_MAIL;
|
$network = NETWORK_MAIL;
|
||||||
$name = substr($url,0,strpos($url,'@'));
|
$name = substr($url,0,strpos($url,'@'));
|
||||||
$profile = 'http://' . substr($url,strpos($url,'@')+1);
|
$profile = 'http://' . substr($url,strpos($url,'@')+1);
|
||||||
// fix nick
|
// fix nick character range
|
||||||
$vcard = array('fn' => $name, 'nick' => $name, 'photo' => gravatar_img($url));
|
$vcard = array('fn' => $name, 'nick' => $name, 'photo' => gravatar_img($url));
|
||||||
$notify = 'smtp';
|
$notify = 'smtp';
|
||||||
$poll = 'email';
|
$poll = 'email';
|
||||||
$priority = 0;
|
$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);
|
imap_close($mbox);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue