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

Bug fixes and added more tests #4

Merged
merged 21 commits into from
Feb 16, 2025
Merged
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ Some features can have rejections disabled in the [reject] section.

```ini
[check]
reject_all=false
single_recipient=true
empty_return_path=true
bad_rcpt=true
empty_return_path=false
bounce_spf=true
non_local_msgid=true

[reject]
single_recipient=true
empty_return_path=true
empty_return_path=false
bad_rcpt=true
bounce_spf=false
non_local_msgid=false
all_bounces=false
```

## Features
Expand Down
10 changes: 4 additions & 6 deletions config/bounce.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
; config/bounce_bad_rcpt: addresses that should never get bounces


[check]
single_recipient=true
empty_return_path=true
bad_rcpt=true

; reject all bounce messages (generally a bad idea)
reject_all=false


[reject]
single_recipient=true
empty_return_path=true
bad_rcpt=true

; reject all bounce messages (generally a bad idea)
all_bounces=false
Loading