add reporting site to delivery report
This commit is contained in:
parent
1a16822987
commit
43251ed8ce
@ -6,6 +6,7 @@ We need much more than this, but here are areas where developers can help. Pleas
|
|||||||
[li]Include TOS link in registration/verification email[/li]
|
[li]Include TOS link in registration/verification email[/li]
|
||||||
[li]Auto preview posts/comments (configurable timer kicks in the preview if not 0)[/li]
|
[li]Auto preview posts/comments (configurable timer kicks in the preview if not 0)[/li]
|
||||||
[li]Create bug tracker module[/li]
|
[li]Create bug tracker module[/li]
|
||||||
|
[li]delivery tracking/reporting[/li]
|
||||||
[li]Filing posts - provide a dropdown menu integrated with the 'post actions menu'[/li]
|
[li]Filing posts - provide a dropdown menu integrated with the 'post actions menu'[/li]
|
||||||
[li]integrate Mozilla Persona (possibly via plugin) https://github.com/mozilla/id-specs/blob/prod/browserid/index.md and become an idP[/li]
|
[li]integrate Mozilla Persona (possibly via plugin) https://github.com/mozilla/id-specs/blob/prod/browserid/index.md and become an idP[/li]
|
||||||
[li]translation plugins - moses or apertium[/li]
|
[li]translation plugins - moses or apertium[/li]
|
||||||
@ -30,7 +31,7 @@ We need much more than this, but here are areas where developers can help. Pleas
|
|||||||
[li]External post connectors, add popular services[/li]
|
[li]External post connectors, add popular services[/li]
|
||||||
[li](in progress Habeas Codice) service classes - provide a pluggable subscription payment gateway for premium accounts[/li]
|
[li](in progress Habeas Codice) service classes - provide a pluggable subscription payment gateway for premium accounts[/li]
|
||||||
[li](in progress Habeas Codice) service classes - account overview page showing resources consumed by channel. With special consideration this page can also be accessed at a meta level by the site admin to drill down on problematic accounts/channels.[/li]
|
[li](in progress Habeas Codice) service classes - account overview page showing resources consumed by channel. With special consideration this page can also be accessed at a meta level by the site admin to drill down on problematic accounts/channels.[/li]
|
||||||
[li]Events module - fix permissions on events, and provide JS translation support for the calendar overview (done); integrate with calDAV[/li]
|
[li]implement CalDAV/CardDAV sync[/li]
|
||||||
[li]Uploads - integrate #^[url=https://github.com/blueimp/jQuery-File-Upload]https://github.com/blueimp/jQuery-File-Upload[/url][/li]
|
[li]Uploads - integrate #^[url=https://github.com/blueimp/jQuery-File-Upload]https://github.com/blueimp/jQuery-File-Upload[/url][/li]
|
||||||
[li]Import/export - include events, things, etc.[/li]
|
[li]Import/export - include events, things, etc.[/li]
|
||||||
[li]API extensions, for Twitter API - search, friending, threading. For Red API, lots of stuff[/li]
|
[li]API extensions, for Twitter API - search, friending, threading. For Red API, lots of stuff[/li]
|
||||||
|
@ -14,6 +14,9 @@ function gprobe_run($argv, $argc){
|
|||||||
|
|
||||||
$url = hex2bin($argv[1]);
|
$url = hex2bin($argv[1]);
|
||||||
|
|
||||||
|
if(! strpos($url,'@'))
|
||||||
|
return;
|
||||||
|
|
||||||
$r = q("select * from xchan where xchan_addr = '%s' limit 1",
|
$r = q("select * from xchan where xchan_addr = '%s' limit 1",
|
||||||
dbesc($url)
|
dbesc($url)
|
||||||
);
|
);
|
||||||
|
@ -1531,6 +1531,8 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $
|
|||||||
|
|
||||||
$result = array();
|
$result = array();
|
||||||
|
|
||||||
|
$result['site'] = z_root();
|
||||||
|
|
||||||
// We've validated the sender. Now make sure that the sender is the owner or author
|
// We've validated the sender. Now make sure that the sender is the owner or author
|
||||||
|
|
||||||
if(! $public) {
|
if(! $public) {
|
||||||
|
Reference in New Issue
Block a user