create third privacy state - public post but not searchable or publicly visible
This commit is contained in:
parent
43d3721fa9
commit
a3edbf7e5d
9 changed files with 21 additions and 20 deletions
|
|
@ -280,7 +280,7 @@ function delivery_run($argv, $argc){
|
|||
continue;
|
||||
|
||||
// private emails may be in included in public conversations. Filter them.
|
||||
if(($public_message) && $item['private'])
|
||||
if(($public_message) && $item['private'] == 1)
|
||||
continue;
|
||||
|
||||
$item_contact = get_item_contact($item,$icontacts);
|
||||
|
|
@ -383,7 +383,7 @@ function delivery_run($argv, $argc){
|
|||
continue;
|
||||
|
||||
// private emails may be in included in public conversations. Filter them.
|
||||
if(($public_message) && $item['private'])
|
||||
if(($public_message) && $item['private'] == 1)
|
||||
continue;
|
||||
|
||||
$item_contact = get_item_contact($item,$icontacts);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue