Hi guys
We have a small hotspot running over an Mweb account. As we all know, Mweb is redirecting outgoing email on port 25, which is a pain in the arse.
We have a lot of complaints from people using the hotspot that they can't send mail, so much, that I've put in a little Postfix server so they can send through that, but its starting to get ridiculous and people and becoming more and more annoyed because of it.
I've read in other posts here that its apparently quite easy to have postfix ignore authentication, but for the life of me, I cannot figure it out. I want to redirect all outgoing mail on 25 to my server and just accept anything.
Here is what I have in my config (only the relevant bit):
What do I need to add so it will ignore/accept any authentication request ?
We have a small hotspot running over an Mweb account. As we all know, Mweb is redirecting outgoing email on port 25, which is a pain in the arse.
We have a lot of complaints from people using the hotspot that they can't send mail, so much, that I've put in a little Postfix server so they can send through that, but its starting to get ridiculous and people and becoming more and more annoyed because of it.
I've read in other posts here that its apparently quite easy to have postfix ignore authentication, but for the life of me, I cannot figure it out. I want to redirect all outgoing mail on 25 to my server and just accept anything.
Here is what I have in my config (only the relevant bit):
Code:
smtpd_helo_required = yes
disable_vrfy_command = yes
smtpd_recipient_restrictions =
warn_if_reject,
reject_non_fqdn_sender,
reject_non_fqdn_recipient,
reject_unknown_sender_domain,
reject_unknown_recipient_domain,
permit_mynetworks,
reject_unauth_destination,
check_recipient_access pcre:/etc/postfix/recipient_checks.pcre,
check_helo_access hash:/etc/postfix/helo_checks,
check_sender_access hash:/etc/postfix/sender_checks,
check_client_access hash:/etc/postfix/client_checks,
check_client_access pcre:/etc/postfix/client_checks.pcre,
permit
What do I need to add so it will ignore/accept any authentication request ?