I guess Dovecot has an LDA called deliver. What is it and how do I use it? Or is it ready to be used. can't find any docs on it. -- Marc Perkel - marc at perkel.com Spam Filter: http://www.junkemailfilter.com My Blog: http://marc.perkel.com
It appears the recent -test series is the only one to have the deliver agent. It is not in -stable or the "normal" branch (see TODO file). deliver appears to take just two arguments: -d user (local user who is to receive the message - default to self) -a path (auth master socket path) You could try: deliver -a /var/run/dovecot/login/default < sample.email.txt Zach. Marc Perkel wrote:> I guess Dovecot has an LDA called deliver. What is it and how do I use > it? Or is it ready to be used. can't find any docs on it. >-------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 256 bytes Desc: OpenPGP digital signature URL: <http://dovecot.org/pipermail/dovecot/attachments/20050801/8ad10437/attachment-0001.bin>
On Jul 31 2005, Zach Bagnall wrote:> It appears the recent -test series is the only one to have the deliver > agent. It is not in -stable or the "normal" branch (see TODO file). > > deliver appears to take just two arguments: > > -d user (local user who is to receive the message - default to self) > -a path (auth master socket path) > > You could try: > > deliver -a /var/run/dovecot/login/default < sample.email.txt > > Zach. > > Marc Perkel wrote: > > I guess Dovecot has an LDA called deliver. What is it and how do I use > > it? Or is it ready to be used. can't find any docs on it. > > >See http://article.gmane.org/gmane.mail.imap.dovecot/5542/match=lda or http://www.dovecot.org/list/dovecot/2005-March/006512.html (gmane is more searchable so I tend to look there first, though you can probably persuade Google to help with the dovecot.org archives) I'd consider it pretty beta from what Timo said. Chris -- --+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+- Christopher Wakelin, c.d.wakelin at reading.ac.uk IT Services Centre, The University of Reading, Tel: +44 (0)118 378 8439 Whiteknights, Reading, RG6 2AF, UK Fax: +44 (0)118 975 3094
Sounds like something I should wait for. Zach Bagnall wrote:>It appears the recent -test series is the only one to have the deliver >agent. It is not in -stable or the "normal" branch (see TODO file). > >deliver appears to take just two arguments: > >-d user (local user who is to receive the message - default to self) >-a path (auth master socket path) > >You could try: > >deliver -a /var/run/dovecot/login/default < sample.email.txt > >Zach. > >Marc Perkel wrote: > > >>I guess Dovecot has an LDA called deliver. What is it and how do I use >>it? Or is it ready to be used. can't find any docs on it. >> >> >>-- Marc Perkel - marc at perkel.com Spam Filter: http://www.junkemailfilter.com My Blog: http://marc.perkel.com
Marc Perkel wrote:> I guess Dovecot has an LDA called deliver. What is it and how do I use > it? Or is it ready to be used. can't find any docs on it.Now you can find some at http://wiki.dovecot.org/moin.cgi/LDA I'v been using deliver many months on test only system without problems and just started to use it on small mail host couple weeks ago, haven't got any problems there either. -- Tomi Hakala
Marc Perkel
2005-Aug-16 15:40 UTC
[Dovecot] Dovecot deliver - direct IMAP folder delivery.
Gordon Tyler wrote:> Marc Perkel wrote: > >> I'm using Exim for my MTA. I set up a trick to deliver directly to >> IMAP folders by using a "-" to separate the name from the folder. >> >> user-folder at domain.com >> >> This delivers to user at domain.com and puts it in the IMAP "folder" for >> that user. The folder has to already exists for this to work. It's >> very popular with my users too because it's like each folder has it's >> own email address. > > > I'd be interested to know how you configured Exim to do this? I use > Exim with Maildrop as LDA. > > Ciao, > Gordon > >Gordon, A lot of this is specific to my setup. But Exim is addaptable to any setup. You'll have to recode it for your configuration. Router: ################################################### # This router matches virtual local user imap folders. # Folders are addresses folder-name at domain virtual_localuser_folder: driver = accept local_part_suffix=-* condition = ${lookup {$local_part} lsearch {/etc/vmail/passwd.$domain} {$value}} domains = +virtual_local_domains require_files = /etc/vmail/passwd.$domain:\ /vhome/$domain/home/$local_part/${sg {$local_part_suffix}{-}{}} retry_use_local_part transport = virtual_local_folder_delivery user = root Transport: virtual_local_folder_delivery: driver = appendfile allow_symlink create_directory delivery_date_add directory_mode = 600 envelope_to_add file = /vhome/$domain/home/$local_part/${sg {$local_part_suffix}{-}{}} group = mail mode = 600 return_path_add user = ${extract{2} {:} {${lookup {$local_part} lsearch {/etc/vmail/passwd.$domain} {$value}}}}