aboutsummaryrefslogtreecommitdiffstats
path: root/include/notifier.php
diff options
context:
space:
mode:
authorMichael Vogel <icarus@dabo.de>2012-03-12 00:22:12 +0100
committerMichael Vogel <icarus@dabo.de>2012-03-12 00:22:12 +0100
commit6e7a190e9197bcf4d00accc5d85ccca4a080bec8 (patch)
tree40ee0e28fe3ba52aab774426f36f6dcd25283e42 /include/notifier.php
parent2ed6b3531eb1a9b778dfd87614fd824480a135e2 (diff)
downloadvolse-hubzilla-6e7a190e9197bcf4d00accc5d85ccca4a080bec8.tar.gz
volse-hubzilla-6e7a190e9197bcf4d00accc5d85ccca4a080bec8.tar.bz2
volse-hubzilla-6e7a190e9197bcf4d00accc5d85ccca4a080bec8.zip
Mail: Subject are now with working "Re:"
Diffstat (limited to 'include/notifier.php')
-rwxr-xr-xinclude/notifier.php29
1 files changed, 7 insertions, 22 deletions
diff --git a/include/notifier.php b/include/notifier.php
index c0a98c8eb..07edc7046 100755
--- a/include/notifier.php
+++ b/include/notifier.php
@@ -655,31 +655,16 @@ function notifier_run($argv, $argc){
if($it['uri'] !== $it['parent-uri']) {
$headers .= 'References: <' . iri2msgid($it['parent-uri']) . '>' . "\n";
- if(! strlen($it['title'])) {
+ if(!strlen($it['title'])) {
$r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' LIMIT 1",
- dbesc($it['parent-uri'])
- );
- if(count($r)) {
- $subtitle = $r[0]['title'];
- if($subtitle) {
- if(strncasecmp($subtitle,'RE:',3))
- $subject = $subtitle;
- else
- $subject = 'Re: ' . $subtitle;
- }
- }
+ dbesc($it['parent-uri']));
+
+ if(count($r) AND ($r[0]['title'] != ''))
+ $subject = $r[0]['title'];
}
+ if(strncasecmp($subject,'RE:',3))
+ $subject = 'Re: '.$subject;
}
-
- /*$headers .= 'MIME-Version: 1.0' . "\n";
- //$headers .= 'Content-Type: text/html; charset=UTF-8' . "\n";
- $headers .= 'Content-Type: text/plain; charset=UTF-8' . "\n";
- $headers .= 'Content-Transfer-Encoding: 8bit' . "\n\n";
- $html = prepare_body($it);
- //$message = '<html><body>' . $html . '</body></html>';
- $message = html2plain($html);
- logger('notifier: email delivery to ' . $addr);
- mail($addr, $subject, $message, $headers);*/
email_send($addr, $subject, $headers, $it);
}
break;