how i can create a regex code to involve all gmails url thanks alot
Asked
Active
Viewed 196 times
2 Answers
0
Since you did not deliver any criterion, which the url should fulfill (I did not look up the exact gmail url pattern), you should try to build it yourself with https://regex101.com/
There you can try any url you can imagine and refine your regex.

Jannek S.
- 365
- 3
- 16
0
What do you want to do with these regex? L7 filters will not work with Gmail as Google is using HTTPS for their services.
If you want regex for Static DNS rules, please try this:
^(mail\.google\.com)|(gmail\.com)|(googlemail\.com)$
In Mikrotik Script it should be escaped:
^(mail\\.google\.com)|(gmail\\.com)|(googlemail\\.com)\$

Uladzimir Palekh
- 1,846
- 13
- 16