![]() |
Forwarding problems ispcp version 1.0.3.1 - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Development Area (/forum-1.html) +--- Forum: Tickets / Roadmap / Timeline (/forum-50.html) +--- Thread: Forwarding problems ispcp version 1.0.3.1 (/thread-9860.html) |
Forwarding problems ispcp version 1.0.3.1 - al_paun - 03-05-2010 02:40 AM Hello, I'm facing with a strange problem. I've added in interface an email to a domain which is a normal email and forward in the same time (i've added the account then I entered and added 3 or 4 email addresses to forward). The users complains that they receive 2 or 3 times the emails send to this forward email. In /var/log/mail.log it seems that email is sent 2 /3 times instead normally only once. Can you please help me with this issue? RE: Forwarding problems ispcp version 1.0.3.1 - TheCry - 03-05-2010 04:16 AM Are you using Amavis and Maia? This problem is known and has nothing to do with ispCP! Look on this site: http://workaround.org/ispmail/etch Seearch there for Code: A few words on how AMaViS will be plugged into Postfix. If some person sends you an email from the internet it will be received by Postfix (the smtpd daemon) first on TCP port 25 (SMTP). If Postfix accepts the email it will be forwarded to AMaViS on TCP port 10024 (SMTP). And if AMaViS is happy with the email's contents it will be sent back to Postfix on TCP port 10025 (SMTP). Postfix finally delivers the email to the actual recipient. All what you have to do is to edit the main.cf and add this line Code: receive_override_options=no_address_mappings Code: content_filter = amavis:[127.0.0.1]:10024 and in the master.cf Code: -o receive_override_options=no_header_body_checks,no_unknown_recipient_checks Code: -o strict_rfc821_envelopes=yes Postfix reload.. Ready RE: Forwarding problems ispcp version 1.0.3.1 - kilburn - 03-05-2010 05:28 AM If you are using amavis without Maia, I recomment the following changes to the postfix's master.cf (see this website for details): Code: [...] RE: Forwarding problems ispcp version 1.0.3.1 - al_paun - 03-05-2010 05:31 PM Thanks a lot |