aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorfriendica <redmatrix@redmatrix.me>2015-04-19 13:41:12 -0700
committerfriendica <redmatrix@redmatrix.me>2015-04-19 13:41:12 -0700
commit01efda6850db9347351f290da6026d6cbc0abe49 (patch)
tree5df63503014a1f7e06483ddf06cca0f21a44e23a /include/text.php
parent0883512e30af10ea7ed0f461afc8236a828e7d2b (diff)
downloadvolse-hubzilla-01efda6850db9347351f290da6026d6cbc0abe49.tar.gz
volse-hubzilla-01efda6850db9347351f290da6026d6cbc0abe49.tar.bz2
volse-hubzilla-01efda6850db9347351f290da6026d6cbc0abe49.zip
api - unobscure mail
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/text.php b/include/text.php
index f1f6d41f0..f8a990f58 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1188,6 +1188,17 @@ function unobscure(&$item) {
}
}
+function unobscure_mail(&$item) {
+ if(array_key_exists('mail_flags',$item) && ($item['mail_flags'] & MAIL_OBSCURED)) {
+ $key = get_config('system','prvkey');
+ if($item['title'])
+ $item['title'] = crypto_unencapsulate(json_decode_plus($item['title']),$key);
+ if($item['body'])
+ $item['body'] = crypto_unencapsulate(json_decode_plus($item['body']),$key);
+ }
+}
+
+
function theme_attachments(&$item) {
$arr = json_decode_plus($item['attach']);