aboutsummaryrefslogtreecommitdiffstats
path: root/include/network.php
diff options
context:
space:
mode:
authorRedMatrix <info@friendica.com>2015-01-25 17:12:43 +1100
committerRedMatrix <info@friendica.com>2015-01-25 17:12:43 +1100
commit776557cb88438bf7268e67e56797da834efaefdf (patch)
tree1eda4adafdb6b0fcb3adbd30068b403e245eeb49 /include/network.php
parentaf7fa99e2ec819164e5800412f8bcbff44bc1c63 (diff)
parentba10833bc5ae0afb51d2fc6609370865386678fb (diff)
downloadvolse-hubzilla-776557cb88438bf7268e67e56797da834efaefdf.tar.gz
volse-hubzilla-776557cb88438bf7268e67e56797da834efaefdf.tar.bz2
volse-hubzilla-776557cb88438bf7268e67e56797da834efaefdf.zip
Merge pull request #876 from cvogeley/master
Check allowed emails, also add blacklisting for
Diffstat (limited to 'include/network.php')
-rw-r--r--include/network.php35
1 files changed, 29 insertions, 6 deletions
diff --git a/include/network.php b/include/network.php
index 170b77d7d..224d9d5e1 100644
--- a/include/network.php
+++ b/include/network.php
@@ -464,24 +464,47 @@ function allowed_email($email) {
return false;
$str_allowed = get_config('system','allowed_email');
- if(! $str_allowed)
+ $str_not_allowed = get_config('system','not_allowed_email');
+
+ if(! $str_allowed && ! $str_not_allowed)
return true;
- $found = false;
-
+ $return = false;
+ $found_allowed = false;
+ $found_not_allowed = false;
+
$fnmatch = function_exists('fnmatch');
+
$allowed = explode(',',$str_allowed);
if(count($allowed)) {
foreach($allowed as $a) {
$pat = strtolower(trim($a));
- if(($fnmatch && fnmatch($pat,$domain)) || ($pat == $domain)) {
- $found = true;
+ if(($fnmatch && fnmatch($pat,$email)) || ($pat == $domain)) {
+ $found_allowed = true;
break;
}
}
}
- return $found;
+
+ $not_allowed = explode(',',$str_not_allowed);
+
+ if(count($not_allowed)) {
+ foreach($not_allowed as $na) {
+ $pat = strtolower(trim($na));
+ if(($fnmatch && fnmatch($pat,$email)) || ($pat == $domain)) {
+ $found_not_allowed = true;
+ break;
+ }
+ }
+ }
+
+ if ($found_allowed) {
+ $return = true;
+ } elseif (!$str_allowed && !$found_not_allowed) {
+ $return = true;
+ }
+ return $return;
}