Re: [exim] Thought exim did this by default..

Top Page
Delete this message
Reply to this message
Author: Phil Pennock
Date:  
To: B. Cook
CC: exim-users
Subject: Re: [exim] Thought exim did this by default..
On 2009-04-08 at 13:22 -0400, B. Cook wrote:
> Maybe I'm not doing it right or missing something..
>
> [/usr/local/etc/exim]# 195 > exiqgrep -r frontiernet.net -i -c
> 3 matches out of 3976 messages
>
> [/usr/local/etc/exim]# 196 > exim -oB2 -C configure -M 1LraPt-000IeA-7t
>
> [/usr/local/etc/exim]# 197 > exiqgrep -r frontiernet.net -i -c
> 2 matches out of 3975 messages
>
> So I thought that should have tried to deliver 2 messages in one smtp
> connection.. looks like it only did one.


Run exim using -qq instead of -q; eg "exim -bd -qq15m" or whatever, or
set queue_smtp_domains appropriately.

Then queue-runs will be done in two stages; the first stage routes all
mail and delivers local mail. The second stage delivers SMTP mail.

Exim only delivers multiple mails down one pipe if it "knows" that there
are multiple mails pending to that destination, by having the records in
the hints databases.

-Phil