aboutsummaryrefslogtreecommitdiffstats
path: root/include/notifier.php
diff options
context:
space:
mode:
authorMichael <icarus@dabo.de>2012-02-25 01:10:45 +0100
committerMichael <icarus@dabo.de>2012-02-25 01:10:45 +0100
commita74b0746b1e39d86aca4f665cfded03e6b344240 (patch)
treeb1da5791878ce39e06dfb0e3e2f2e5d0436b32f1 /include/notifier.php
parent0ba45eb74543fc6377c48ac17d8b632e431e9467 (diff)
downloadvolse-hubzilla-a74b0746b1e39d86aca4f665cfded03e6b344240.tar.gz
volse-hubzilla-a74b0746b1e39d86aca4f665cfded03e6b344240.tar.bz2
volse-hubzilla-a74b0746b1e39d86aca4f665cfded03e6b344240.zip
multipart messages complete, message-id conversion done.
Diffstat (limited to 'include/notifier.php')
-rwxr-xr-xinclude/notifier.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/notifier.php b/include/notifier.php
index b22e8c6f0..684395da6 100755
--- a/include/notifier.php
+++ b/include/notifier.php
@@ -651,10 +651,10 @@ function notifier_run($argv, $argc){
$file = tempnam("/tmp/friendica/", "mail-out2-");
file_put_contents($file, json_encode($it));
- $headers .= 'Message-Id: <' . email_cleanupmessageid($it['uri']) . '>' . "\n";
+ $headers .= 'Message-Id: <' . iri2msgid($it['uri']) . '>' . "\n";
if($it['uri'] !== $it['parent-uri']) {
- $headers .= 'References: <' . email_cleanupmessageid($it['parent-uri']) . '>' . "\n";
+ $headers .= 'References: <' . iri2msgid($it['parent-uri']) . '>' . "\n";
if(! strlen($it['title'])) {
$r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' LIMIT 1",
dbesc($it['parent-uri'])