I need a solution
Hello,
when you create a profiled DGM using an EDM, you need to select one of your field as a key. but when you select email, dlp control this field to be in right format using this regexp (as described by online documentation) :
COUNTRY_TLD="."[a-z]{2}
GENERIC_TLD=".aero"|".biz"|".com"|".coop"|".edu"|".gov"|".info"|".int"|".mil"|".museum"|".name"|".net"|".org"|".pro"|".arpa"
TLD={GENERIC_TLD}|{COUNTRY_TLD}
EMAIL_STR=[A-Za-z][A-Za-z0-9"_""-""."]*
EMAIL={EMAIL_STR}"@"{EMAIL_STR}{TLD}
unfortunately it is no more valid as there is more existing generic_tld (like .asia, .mobi, ...) now so some of my emails are rejected and i cannot monitor them. is there a way to update this or define a custom rule to check email format ?
Regards.