transport for email contacts phase II
This commit is contained in:
parent
4fc455d195
commit
86c0eac27d
2
boot.php
2
boot.php
|
@ -101,10 +101,12 @@ define ( 'NETWORK_OSTATUS', 'stat'); // status.net, identi.ca, GNU-s
|
||||||
define ( 'NETWORK_FEED', 'feed'); // RSS/Atom feeds with no known "post/notify" protocol
|
define ( 'NETWORK_FEED', 'feed'); // RSS/Atom feeds with no known "post/notify" protocol
|
||||||
define ( 'NETWORK_DIASPORA', 'dspr'); // Diaspora
|
define ( 'NETWORK_DIASPORA', 'dspr'); // Diaspora
|
||||||
define ( 'NETWORK_MAIL', 'mail'); // IMAP/POP
|
define ( 'NETWORK_MAIL', 'mail'); // IMAP/POP
|
||||||
|
define ( 'NETWORK_MAIL2', 'mai2'); // extended IMAP/POP
|
||||||
define ( 'NETWORK_FACEBOOK', 'face'); // Facebook API
|
define ( 'NETWORK_FACEBOOK', 'face'); // Facebook API
|
||||||
define ( 'NETWORK_LINKEDIN', 'lnkd'); // LinkedIn
|
define ( 'NETWORK_LINKEDIN', 'lnkd'); // LinkedIn
|
||||||
define ( 'NETWORK_XMPP', 'xmpp'); // XMPP
|
define ( 'NETWORK_XMPP', 'xmpp'); // XMPP
|
||||||
define ( 'NETWORK_MYSPACE', 'mysp'); // MySpace
|
define ( 'NETWORK_MYSPACE', 'mysp'); // MySpace
|
||||||
|
define ( 'NETWORK_GPLUS', 'goog'); // Google+
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Maximum number of "people who like (or don't like) this" that we will list by name
|
* Maximum number of "people who like (or don't like) this" that we will list by name
|
||||||
|
|
|
@ -373,6 +373,7 @@ function delivery_run($argv, $argc){
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case NETWORK_MAIL :
|
case NETWORK_MAIL :
|
||||||
|
case NETWORK_MAIL2:
|
||||||
|
|
||||||
if(get_config('system','dfrn_only'))
|
if(get_config('system','dfrn_only'))
|
||||||
break;
|
break;
|
||||||
|
@ -413,7 +414,14 @@ function delivery_run($argv, $argc){
|
||||||
$reply_to = $r1[0]['reply_to'];
|
$reply_to = $r1[0]['reply_to'];
|
||||||
|
|
||||||
$subject = (($it['title']) ? $it['title'] : t("\x28no subject\x29")) ;
|
$subject = (($it['title']) ? $it['title'] : t("\x28no subject\x29")) ;
|
||||||
|
|
||||||
|
// only expose our real email address to true friends
|
||||||
|
|
||||||
|
if(($contact['rel'] == CONTACT_IS_FRIEND) && (! $contact['blocked']))
|
||||||
$headers = 'From: ' . $local_user[0]['username'] . ' <' . $local_user[0]['email'] . '>' . "\n";
|
$headers = 'From: ' . $local_user[0]['username'] . ' <' . $local_user[0]['email'] . '>' . "\n";
|
||||||
|
else
|
||||||
|
$headers = 'From: ' . $local_user[0]['username'] . ' <' . t('noreply') . '@' . $a->get_hostname() . '>' . "\n";
|
||||||
|
|
||||||
if($reply_to)
|
if($reply_to)
|
||||||
$headers .= 'Reply-to: ' . $reply_to . "\n";
|
$headers .= 'Reply-to: ' . $reply_to . "\n";
|
||||||
$headers .= 'Message-id: <' . $it['uri'] . '>' . "\n";
|
$headers .= 'Message-id: <' . $it['uri'] . '>' . "\n";
|
||||||
|
|
|
@ -584,6 +584,7 @@ function notifier_run($argv, $argc){
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case NETWORK_MAIL:
|
case NETWORK_MAIL:
|
||||||
|
case NETWORK_MAIL2:
|
||||||
|
|
||||||
if(get_config('system','dfrn_only'))
|
if(get_config('system','dfrn_only'))
|
||||||
break;
|
break;
|
||||||
|
@ -629,7 +630,7 @@ function notifier_run($argv, $argc){
|
||||||
|
|
||||||
// only expose our real email address to true friends
|
// only expose our real email address to true friends
|
||||||
|
|
||||||
if($contact['rel'] == CONTACT_IS_FRIEND)
|
if(($contact['rel'] == CONTACT_IS_FRIEND) && (! $contact['blocked']))
|
||||||
$headers = 'From: ' . $local_user[0]['username'] . ' <' . $local_user[0]['email'] . '>' . "\n";
|
$headers = 'From: ' . $local_user[0]['username'] . ' <' . $local_user[0]['email'] . '>' . "\n";
|
||||||
else
|
else
|
||||||
$headers = 'From: ' . $local_user[0]['username'] . ' <' . t('noreply') . '@' . $a->get_hostname() . '>' . "\n";
|
$headers = 'From: ' . $local_user[0]['username'] . ' <' . t('noreply') . '@' . $a->get_hostname() . '>' . "\n";
|
||||||
|
@ -754,9 +755,10 @@ function notifier_run($argv, $argc){
|
||||||
);
|
);
|
||||||
|
|
||||||
$r2 = q("SELECT `id`, `name`,`network` FROM `contact`
|
$r2 = q("SELECT `id`, `name`,`network` FROM `contact`
|
||||||
WHERE `network` = '%s' AND `uid` = %d AND `blocked` = 0 AND `pending` = 0
|
WHERE `network` in ( '%s', '%s') AND `uid` = %d AND `blocked` = 0 AND `pending` = 0
|
||||||
AND `rel` != %d order by rand() ",
|
AND `rel` != %d order by rand() ",
|
||||||
dbesc(NETWORK_DFRN),
|
dbesc(NETWORK_DFRN),
|
||||||
|
dbesc(NETWORK_MAIL2),
|
||||||
intval($owner['uid']),
|
intval($owner['uid']),
|
||||||
intval(CONTACT_IS_SHARING)
|
intval(CONTACT_IS_SHARING)
|
||||||
);
|
);
|
||||||
|
|
|
@ -369,7 +369,7 @@ function poller_run($argv, $argc){
|
||||||
|
|
||||||
$xml = fetch_url($contact['poll']);
|
$xml = fetch_url($contact['poll']);
|
||||||
}
|
}
|
||||||
elseif($contact['network'] === NETWORK_MAIL) {
|
elseif($contact['network'] === NETWORK_MAIL || $contact['network'] === NETWORK_MAIL2) {
|
||||||
|
|
||||||
$mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
|
$mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
|
||||||
if($mail_disabled)
|
if($mail_disabled)
|
||||||
|
@ -462,7 +462,7 @@ function poller_run($argv, $argc){
|
||||||
$datarray['contact-id'] = $contact['id'];
|
$datarray['contact-id'] = $contact['id'];
|
||||||
if($datarray['parent-uri'] === $datarray['uri'])
|
if($datarray['parent-uri'] === $datarray['uri'])
|
||||||
$datarray['private'] = 1;
|
$datarray['private'] = 1;
|
||||||
if(! get_pconfig($importer_uid,'system','allow_public_email_replies')) {
|
if(($contact['network'] === NETWORK_MAIL) && (! get_pconfig($importer_uid,'system','allow_public_email_replies'))) {
|
||||||
$datarray['private'] = 1;
|
$datarray['private'] = 1;
|
||||||
$datarray['allow_cid'] = '<' . $contact['id'] . '>';
|
$datarray['allow_cid'] = '<' . $contact['id'] . '>';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user