Verified Commit 80167cfb authored by dockx thibault's avatar dockx thibault
Browse files

:sparkles: (CORE) - Mail - supannMailPrivee is taken correctly

Email format from supann mail privee is now ok.
Showing with 6 additions and 2 deletions
+6 -2
......@@ -189,8 +189,12 @@ class tasksMail extends simplePlugin
$info = $ldap->fetch();
if (!empty($info[$mailAttr][0])) {
// In case of private supann mail, remove the prefix
$mailList[] = preg_replace('/.+?(?=supann)/', '', $info[$mailAttr][0]);
// Remove anything between curly braces (e.g., {PERSO}, {PRO} as well as supann labels)
$cleanMail = preg_replace('/.+?(?=supann)/', '', $info[$mailAttr][0]);
$finalMail = preg_replace('/\{.*?\}/', '', $cleanMail);
$mailList[] = $finalMail;
// Render the mailing list unique, somewhat mandatory when updating the members lists with dynGroups and members.
$mailList = array_unique($mailList);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment