Regex Whitelist Fails
I want to approve all the email coming into the domain ,
i've added the following regex:
^(([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5}){1,25})+([;.](([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5}){1,25})+)*$
&
\w*@\w*.\w*
Neither one is working
so i tested the one shown in example image
added \[email protected] and trying the test email function it doesn't show up anything when i enter [email protected]
Only adding the complete email address seems to work
Its not just the test page tho i'm not receiving emails unless i keep the complete address
It seems that my parameters are written in reverse.
Plus there's another bug , so i have two chat ids one group and another personal, emails do get sent to both but commands only work in personal.
You must @ the bot in the group for it to take effect.
Oh, it may not work, I haven't specifically adapted it for groups.
You must
@the bot in the group for it to take effect.
I tried the command with @ tg auto fills that in group it didnt work, tried replying to bot's msg with command, still didn't work tho
Maybe /start @botname will work, the command must be in front.
You can create a separate issue and I will specifically adapt the group command for it.
That aside, so with .* regex entry even if test mail fails it should receive the email right ?
- First, test the whitelist.
- Then test the blacklist.
- The rest can be directly allowed.
I am using "https://sendtestemail.com/" to test if i can receive emails or not , its showing status : bounced(few hrs ago i did receive emails from thsi), and i tried the youtube signup email too, i receive it on my another email but not getting it here.
You can check the logs in the Cloudflare backend, and it's best to set up FORWARD_LIST for easier testing.
FORWARD_LIST is to fwd the email to another email address for backup am i right ? , is there other process thats needs to be done or i can just add the email to this env var
Need to add the addresses in FORWARD_LIST to the trusted list in Cloudflare.
Yeah found the issue while doing that , apparently cloudflare had toggled catch-all off by itself :) now its working
want me to close this or just convert this into the grp commands not working issue ?