Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add word boundary when matching extended status codes #413

Merged
merged 1 commit into from
Jul 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions config/bounces.txt
Original file line number Diff line number Diff line change
Expand Up @@ -455,14 +455,14 @@ IPTS04,defer,spam,temporarily deferred due to user complaints
^\d{3}[ \-]+4\.6\.10\b,defer,protocol,Email Servers Are Not Responding Appropriately
^\d{3}[ \-]+4\.7\.0\b,defer,policy,Unknown Security Or Policy Concern
^\d{3}[ \-]+4\.7\.1\b,defer,block,Message Sender Blocked By Receiving Server
^\d{3}[ \-]+4\.7\.2,reject,auth,Not Authorized To Send To Mailing List
^\d{3}[ \-]+4\.7\.3,defer,other,Security Features Could Not Be Interpreted
^\d{3}[ \-]+4\.7\.4,defer,auth,User Authentication For Message Failed
^\d{3}[ \-]+4\.7\.5,reject,message,Message Authentication Issues
^\d{3}[ \-]+4\.7\.6,reject,message,Message Encryption Issues
^\d{3}[ \-]+4\.7\.7,reject,message,Potentially Corrupt Message
^\d{3}[ \-]+4\.7\.8,defer,auth,User Authentication Failed
^\d{3}[ \-]+4\.7\.9,defer,auth,Security Issue With User Authentication
^\d{3}[ \-]+4\.7\.2\b,reject,auth,Not Authorized To Send To Mailing List
^\d{3}[ \-]+4\.7\.3\b,defer,other,Security Features Could Not Be Interpreted
^\d{3}[ \-]+4\.7\.4\b,defer,auth,User Authentication For Message Failed
^\d{3}[ \-]+4\.7\.5\b,reject,message,Message Authentication Issues
^\d{3}[ \-]+4\.7\.6\b,reject,message,Message Encryption Issues
^\d{3}[ \-]+4\.7\.7\b,reject,message,Potentially Corrupt Message
^\d{3}[ \-]+4\.7\.8\b,defer,auth,User Authentication Failed
^\d{3}[ \-]+4\.7\.9\b,defer,auth,Security Issue With User Authentication
^\d{3}[ \-]+4\.7\.10\b,reject,auth,Stronger Security Or Encryption Needed
^\d{3}[ \-]+4\.7\.11\b,reject,auth,Encryption Needed For Network Connection
^\d{3}[ \-]+4\.7\.12\b,defer,auth,Authentication Required
Expand Down
Loading