Again, i need help regarding email.

Anthony

New Member
Hi all.

Hmm, i have almost no guts to post anything anymore because
i know i am getting bored. But, alone i cant solve the problem..

The problem.

I have 3 domains on 1 server with this vhcs2.

The domeins all work perfect ans so are the databases etc etc.
The created email accounts, boxes and forwarders also work great.

Just, emails sended by the site systems, like activation emails, welcome emails, contact us emails etc, are not sended out and then also
not received by site users.

Thanks again and i am realy sorry when i start to be anoying.

Anthony
 
Again we need logfiles ;) Register to any site and give us the tail -f /var/log/mail.info output while the registration mail should be sent.
 
Hi Centy,

here is the tail

Jun 15 15:32:39 box courierpop3login: LOGIN, user=droopy@scriptscentral.org, ip= [::ffff:83.119.71.191]
Jun 15 15:32:39 box courierpop3login: LOGOUT, user=droopy@scriptscentral.org, ip =[::ffff:83.119.71.191], top=0, retr=0, rcvd=12, sent=39, time=0
Jun 15 15:32:40 box courierpop3login: LOGIN, user=droopy@scriptscentral.org, ip= [::ffff:83.119.71.191]
Jun 15 15:32:40 box courierpop3login: LOGOUT, user=droopy@scriptscentral.org, ip =[::ffff:83.119.71.191], top=0, retr=0, rcvd=12, sent=39, time=0
Jun 15 15:32:50 box postfix/smtpd[19610]: fatal: parameter "smtpd_recipient_rest rictions": specify at least one working instance of: check_relay_domains, reject _unauth_destination, reject, defer or defer_if_permit
Jun 15 15:32:51 box postfix/master[16159]: warning: process /usr/lib/postfix/smt pd pid 19610 exit status 1
Jun 15 15:32:51 box postfix/master[16159]: warning: /usr/lib/postfix/smtpd: bad command startup -- throttling
Jun 15 15:33:51 box postfix/smtpd[19650]: fatal: parameter "smtpd_recipient_rest rictions": specify at least one working instance of: check_relay_domains, reject _unauth_destination, reject, defer or defer_if_permit
Jun 15 15:33:52 box postfix/master[16159]: warning: process /usr/lib/postfix/smt pd pid 19650 exit status 1
Jun 15 15:33:52 box postfix/master[16159]: warning: /usr/lib/postfix/smtpd: bad command startup -- throttling
 
Hm have a look at your /etc/postfix/main.cf if the smtpd_recipient_restrictions are spelled correctly. Or post them here.
 
Very strange behaviour of your postfix because you have defined everything correct ... Do you have any other main.cf on your host?
 
Then it's very strange because it looked like a problem with newline characters. What happens if you reload postfix?
 
i tailed again

Jun 15 18:22:39 box postfix/smtpd[20955]: fatal: parameter "smtpd_recipient_restrictions": specify at least one working instance of: check_relay_domains, reject_unauth_destination, reject, defer or defer_if_permit
Jun 15 18:22:40 box postfix/master[16159]: warning: process /usr/lib/postfix/smtpd pid 20955 exit status 1
Jun 15 18:22:40 box postfix/master[16159]: warning: /usr/lib/postfix/smtpd: bad command startup -- throttling
 
Try:
smtpd_recipient_restrictions =
permit_sasl_authenticated
permit_mynetworks
reject_unauth_destination

Have you checked your mynetworks_style settings?
 
smtpd_recipient_restrictions = permit_sasl_authenticated, permit_mynetworks, reject_unauth_destination, reject


could just be in 1 line. If i place

smtpd_recipient_restrictions =
permit_sasl_authenticated
permit_mynetworks
reject_unauth_destination
reject


and i reload it starts to ask to add '=' behind them
 
Back
Top