[Exim] outgoing error

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: frederic.roux
Fecha:  
A: exim-users
Asunto: [Exim] outgoing error
Hello,

With slackware 7.0 and exim 3.12.
Locally, exim run Ok, but I have problem with PPP.

- when I recept my mail, with fetchmail, Email are kept in
/var/spool/exim/input. I must do 'exim -q' to deliver localy.
Why ? What can I do to avoid that and receive directly my email. ?

- When I send a remote mail, I have error message :
2000-02-01 12:05:44 SMTP error from remote mailer after RCPT
     TO:<frederic.roux@???>: host smtp.free.fr [212.27.32.21]: 450
     <frederic@???>: Sender address rejected: Domain not found
     2000-02-01 12:05:50 SMTP error from remote mailer after RCPT
     TO:<frederic.roux@???>: host smtp.free.fr [212.27.32.74]: 450
     <frederic@???>: Sender address rejected: Domain not found
     2000-02-01 12:05:50 frederic.roux@???: remote_smtp transport deferred:
SMTP
     error from remote mailer after RCPT TO:<frederic.roux@???>: host
     smtp.free.fr [212.27.32.74]: 450 <frederic@???>: Sender address
rejected:
     Domain not found


where 'alfred.fr' is local and 'free.fr' is remote.

Thanks in advance.

Frédéric

PS : I apologize for my english.



that is my exim.conf :

primary_hostname = linux.alfred.fr
     qualify_domain = alfred.fr


     qualify_recipient = alfred.fr
     local_domains = alfred.fr:localhost


     local_domains_include_host = true
     local_domains_include_host_literals = true


     never_users = root


     host_accept_relay = 127.0.0.1:free.fr


     queue_smtp_domains = *.free.fr
     queue_remote_domains = *.free.fr


     host_lookup = 0.0.0.0/0



     relay_domains  = alfred.fr:free.fr
     no_relay_domains_include_local_mx
     no_relay_match_host_or_sender


     sender_address_relay = alfred.fr:free.fr


     prohibition_message = contact postmaster@???
     recipients_reject_except = postmaster@???


     exim_user = mail
     exim_group = mail


     end


     # This transport is used for delivering messages over SMTP connections.


     remote_smtp:
       driver = smtp


     # Use procmail, because RedHat's sendmail configuration uses procmail
     # in it's default configuration as well.
     # -- Mark Bergsma <mark@???>


     procmail:
       driver = pipe
       command = "/usr/bin/procmail -Y -d ${local_part}"


     local_delivery:
       driver = appendfile
       file = /var/spool/mail/${local_part}
       delivery_date_add
       envelope_to_add
       return_path_add
       group = mail
       mode = 0660
address_pipe:
       driver = pipe
       return_output



     # This transport is used for handling deliveries directly to files that are
     # generated by aliassing or forwarding.


     address_file:
       driver = appendfile
       delivery_date_add
       envelope_to_add
       return_path_add



     # This transport is used for handling autoreplies generated by the
filtering
     # option of the forwardfile director.


     address_reply:
       driver = autoreply



     end




     system_aliases:
       driver = aliasfile
       file = /etc/aliases
       search_type = lsearch
     # user = exim
       file_transport = address_file
       pipe_transport = address_pipe
       include_domain = true
       expand = true



     userforward:
       driver = forwardfile
       file = .forward
       no_verify
       no_expn
       check_ancestor
       filter = true
       file_transport = address_file
       pipe_transport = address_pipe
       reply_transport = address_reply



     # Use procmail by default.
     # -- Mark Bergsma <mark@???>


     procmail:
       driver = localuser
       transport = procmail
       require_files = /usr/bin/procmail



     # This director matches local user mailboxes.


     localuser:
       driver = localuser
       transport = local_delivery



     end


     smarthost:
       driver = domainlist
       transport = remote_smtp
       route_list = "* smtp.free.fr bydns_a"


     # This router routes to remote hosts over SMTP using a DNS lookup with
     # default options.


     lookuphost:
       driver = lookuphost
       transport = remote_smtp



     literal:
       driver = ipliteral
       transport = remote_smtp



     end




     ######################################################################
     #                      RETRY CONFIGURATION                           #
     ######################################################################


     # This single retry rule applies to all domains and all errors. It
specifies
     # retries every 15 minutes for 2 hours, then increasing retry intervals,
     # starting at 1 hour and increasing each time by a factor of 1.5, up to 16
     # hours, then retries every 8 hours until 4 days have passed since the
first
     # failed delivery.


     # Domain               Error       Retries
     # ------               -----       -------


     *                      *           F,2h,15m; G,16h,1h,1.5; F,4d,8h


     end