Limiting max recipients per email to 15

Post Reply
arktex54
Posts: 14
Joined: Wed Jul 15, 2020 11:10 pm

Code: Select all

* [Feature] Limiting max recipients per email to 15, in order to prevent mass spamming
Looks like I found my problem I have been fighting for two weeks. How do I disable this?

I understand you do this for free and for your company and that is appreciated. Doing such things that breaks others installs is something that should be reviewed before implementing. Firefighters have not been receiving their pages because of this change.
User avatar
myVesta
Site Admin
Posts: 932
Joined: Fri Jun 19, 2020 9:59 am
Has thanked: 8 times
Been thanked: 6 times

Edit /etc/exim4/exim4.conf.template

Find:

Code: Select all

recipients_max = 15
recipients_max_reject = true
(should be around 28-29 line)

Delete both lines (or modify 15 to higher value).

Restart Exim4:

Code: Select all

service exim4 restart
User avatar
myVesta
Site Admin
Posts: 932
Joined: Fri Jun 19, 2020 9:59 am
Has thanked: 8 times
Been thanked: 6 times

I'm aware what problem this change caused, and I'm really sorry to hear that. I hope nobody is burned because of it.
Problem is that there is nothing to be 'reviewed', since this is not code change, this is just settings modification.

A lot of spammers (when they hack business users or site) uses this fact that nothing prevent them to put 500 email addresses per mail, and then to send spam.
We already have limit of 40 mails per hour, but when they put 500 addresses per mail, that limit will not prevent them to send 20.000 spam emails...
arktex54
Posts: 14
Joined: Wed Jul 15, 2020 11:10 pm

dpeca wrote: Wed Sep 09, 2020 10:01 am Edit /etc/exim4/exim4.conf.template

Find:

Code: Select all

recipients_max = 15
recipients_max_reject = true
(should be around 28-29 line)

Delete both lines (or modify 15 to higher value).

Restart Exim4:

Code: Select all

service exim4 restart
I was able to change it awhile back and came to give you thanks for the help!
Post Reply