Re: [Exim] Re: remote SMTP defer to a different queue first

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Andrew
Data:  
Para: exim-users
Asunto: Re: [Exim] Re: remote SMTP defer to a different queue first
Hi Tore and list :)

This solution worked very well... Thank you so much for being so kind to
reply (and all the other replies).

Many Thanks,

Andrew.

Tore Anderson wrote:

>* Andrew
>
> > I was after something like.... (lame psudo code)
> > dnslookup:
> > driver = dnslookup
> > domains = ! +local_domains
> > transport = my_spool
> > ignore_target_hosts = 0.0.0.0 : 127.0.0.0/8
> > no_more
> >
> > then in transports -
> > my_spool:
> > spool = /var/spool/exim.out
> > defer
> >
> > (I know the above won't work, but is there something like that I can do?)
>
> Though Exim doesn't have intrinsic support for different queues, it's
> fairly easy to make something like this in a ad-hoc manner. I did
> something like the following once (though I don't have access to that
> system now, so this is from memory, but you probably get the idea):
>
> # main section
> .ifdef SLOWQ
> spool_directory = /var/spool/exim4-slow
> .else
> spool_directory = /var/spool/exim4
> .endif
>
>  # routers section
>  .ifndef SLOWQ
>  slowq:
>    driver = accept
>    domains = ! +local_domains
>    transport = slowq_pipe
>    ignore_target_hosts = 0.0.0.0 : 127.0.0.0/8
>    no_more
>  .endif

>
>  # tranports section
>  slowq_pipe:
>    driver = pipe
>    use_bsmtp
>    command = /usr/sbin/exim4 -DSLOWQ -bS -odq

>
> I think that was about it. Then you'd just have to set up a queue
> runner daemon or a cron job which runs the queue with -DSLOWQ, and
> you're all set.
>
>--
>Tore Anderson
>
>--
>
>## List details at http://www.exim.org/mailman/listinfo/exim-users Exim details at http://www.exim.org/ ##
>
>
>