lmtp delivery if over quota

Dennis Davis D.H.Davis at bath.ac.uk
Thu Jun 25 05:10:05 EDT 2009


On Thu, 25 Jun 2009, Nicolas KOWALSKI wrote:

> From: Nicolas KOWALSKI <niko at petole.demisel.net>
> To: info-cyrus at lists.andrew.cmu.edu
> Date: Thu, 25 Jun 2009 09:55:10 +0200
> Subject: Re: lmtp delivery if over quota
> X-Spam-Score: 0.0 (/)
> 
> Rudy Gevaert <rudy.gevaert at ugent.be> writes:
> 
> > I was wondering if it is possible to deliver an email to a mailbox  
> > even when the mailbox is over quota.
> 
> If you are using Exim as MDA, it allows the use of the IGNOREQUOTA
> extension; I do not remember how to do it.

It's the "lmtp_ignore_quota" private option of exim's lmtp
transport.  Something like the second transport of:

begin transports

# Transport to deliver mail to the Cyrus IMAP server.  We're
# going to shovel this down the loopback address using the ltmp
# protocol.
cyrus_ltmp:
  driver = smtp
  protocol = lmtp
  hosts = LOOPBACK
  hosts_override = true
  allow_localhost = true

# Similar transport to the above.  But quota restrictions should
# be ignored.  Use under circumstances when you want to force the
# message through.
cyrus_ltmp_ignore_quota:
  driver = smtp
  protocol = lmtp
  hosts = LOOPBACK
  lmtp_ignore_quota = true
  hosts_override = true
  allow_localhost = true

...

should (ie I haven't really tested this) do the job.
-- 
Dennis Davis, BUCS, University of Bath, Bath, BA2 7AY, UK
D.H.Davis at bath.ac.uk               Phone: +44 1225 386101


More information about the Info-cyrus mailing list