aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dreport.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-09-30 19:27:53 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-09-30 19:27:53 -0700
commit9bdb7bef5dadb3cfb8e3ff661f68b5cc7a70c5cd (patch)
treec8e629199c5fe3e0e3ace04b410a2988d684271e /mod/dreport.php
parent54e7d5d260bcec0132939bdb6a3e14780d46a27c (diff)
downloadvolse-hubzilla-9bdb7bef5dadb3cfb8e3ff661f68b5cc7a70c5cd.tar.gz
volse-hubzilla-9bdb7bef5dadb3cfb8e3ff661f68b5cc7a70c5cd.tar.bz2
volse-hubzilla-9bdb7bef5dadb3cfb8e3ff661f68b5cc7a70c5cd.zip
add delivery reports to mail (not backported to redmatrix)
Diffstat (limited to 'mod/dreport.php')
-rw-r--r--mod/dreport.php47
1 files changed, 47 insertions, 0 deletions
diff --git a/mod/dreport.php b/mod/dreport.php
index 31a6274c8..c320bf0e6 100644
--- a/mod/dreport.php
+++ b/mod/dreport.php
@@ -7,14 +7,44 @@ function dreport_content(&$a) {
return;
}
+ $table = 'item';
+
$channel = $a->get_channel();
$mid = ((argc() > 1) ? argv(1) : '');
+ if($mid === 'mail') {
+ $table = 'mail';
+ $mid = ((argc() > 2) ? argv(2) : '');
+ }
+
+
if(! $mid) {
notice( t('Invalid message') . EOL);
return;
}
+
+ switch($table) {
+ case 'item':
+ $i = q("select id from item where mid = '%s' and author_xchan = '%s' ",
+ dbesc($mid),
+ dbesc($channel['channel_hash'])
+ );
+ break;
+ case 'mail':
+ $i = q("select id from mail where mid = '%s' and from_xchan = '%s'",
+ dbesc($mid),
+ dbesc($channel['channel_hash'])
+ );
+ break;
+ default:
+ break;
+ }
+
+ if(! $i) {
+ notice( t('Permission denied') . EOL);
+ return;
+ }
$r = q("select * from dreport where dreport_xchan = '%s' and dreport_mid = '%s'",
dbesc($channel['channel_hash']),
@@ -33,6 +63,11 @@ function dreport_content(&$a) {
for($x = 0; $x < count($r); $x++ ) {
$r[$x]['name'] = escape_tags(substr($r[$x]['dreport_recip'],strpos($r[$x]['dreport_recip'],' ')));
+ // This has two purposes: 1. make the delivery report strings translateable, and
+ // 2. assign an ordering to item delivery results so we can group them and provide
+ // a readable report with more interesting events listed toward the top and lesser
+ // interesting items towards the bottom
+
switch($r[$x]['dreport_result']) {
case 'channel sync processed':
$r[$x]['gravity'] = 0;
@@ -61,6 +96,18 @@ function dreport_content(&$a) {
$r[$x]['dreport_result'] = t('permission denied');
$r[$x]['gravity'] = 6;
break;
+ case 'recipient not found':
+ $r[$x]['dreport_result'] = t('recipient not found');
+ break;
+ case 'mail recalled':
+ $r[$x]['dreport_result'] = t('mail recalled');
+ break;
+ case 'duplicate mail received':
+ $r[$x]['dreport_result'] = t('duplicate mail received');
+ break;
+ case 'mail delivered':
+ $r[$x]['dreport_result'] = t('mail delivered');
+ break;
default:
$r[$x]['gravity'] = 1;
break;