S sanojs Member Sep 13, 2019 44 1 13 36 Mar 4, 2022 #1 Hi, I need to block emails with a display name. I have tried with what object regular expression ITHelpDesk*?[^"'<>\s]+@. But it did not work. Can you help with the correct expression? Attached screenshot for reference. Thanks Attachments DISPLAY Name.JPG 15.5 KB · Views: 13
Hi, I need to block emails with a display name. I have tried with what object regular expression ITHelpDesk*?[^"'<>\s]+@. But it did not work. Can you help with the correct expression? Attached screenshot for reference. Thanks
Matthias. Proxmox Retired Staff Retired Staff Jan 17, 2022 470 112 28 Mar 4, 2022 #2 First of all, that's the wrong forum, you probably want https://forum.proxmox.com/forums/mail-gateway-installation-and-configuration.8/. I assume you got the regex from here https://forum.proxmox.com/threads/how-to-block-emails-with-display-name-in-proxmox.64356/? It's missing the dot before the star, i.e. you need Code: ITHelpDesk.*? Reactions: Stoiko Ivanov
First of all, that's the wrong forum, you probably want https://forum.proxmox.com/forums/mail-gateway-installation-and-configuration.8/. I assume you got the regex from here https://forum.proxmox.com/threads/how-to-block-emails-with-display-name-in-proxmox.64356/? It's missing the dot before the star, i.e. you need Code: ITHelpDesk.*?