Re: [Dovecot] namespace delivery question

2013-07-04 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 3 Jul 2013, Laszlo Kiraly wrote: I think you should reject incoming mails from outside to vmail and handle all deliveries to public through local SMTP aliases. Because "vmail" is no valid recipient anyway, isn't it? Do you think reject in

Re: [Dovecot] namespace delivery question

2013-07-03 Thread Laszlo Kiraly
> > If I rewrite i...@domain.com to vmail+public/i...@domain.com, then it saved > > to > > /home/vmail/public/mailboxes/info however if I get mail to > > vmail+public/i...@anotherdomain.com then it's saved to the same mailbox. > > > > How can I set dovecot to save to different mailboxes? > > if b

Re: [Dovecot] namespace delivery question

2013-07-03 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 3 Jul 2013, Laszlo Kiraly wrote: It mostly works. location = sdbox:/home/vmail/public/ If I rewrite i...@domain.com to vmail+public/i...@domain.com, then it saved to /home/vmail/public/mailboxes/info however if I get mail to vmail+publ

Re: [Dovecot] namespace delivery question

2013-07-03 Thread Laszlo Kiraly
aiser To: k...@madalbal.hu Cc: dovecot@dovecot.org Sent: Tue, 2 Jul 2013 14:28:41 +0200 (CEST) Subject: Re: [Dovecot] namespace delivery question > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On Thu, 27 Jun 2013, Laszlo Kiraly wrote: > > > i...@domain.com <- pub

Re: [Dovecot] namespace delivery question

2013-07-02 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 2 Jul 2013, Laszlo Kiraly wrote: There is a -m option in the lda delivery where you can give namespace prefix. Maybe it's good for this, but I couldn't find any information how can I do this with lmtp? If you set: lmtp_save_to_detail_ma

Re: [Dovecot] namespace delivery question

2013-07-02 Thread Laszlo Kiraly
> > There is a -m option in the lda delivery where you can give namespace prefix. > > Maybe it's good for this, but I couldn't find any information how can I do > > this with lmtp? > > If you set: > > lmtp_save_to_detail_mailbox = yes > recipient_delimiter = # > > you could alias i...@domain.co

Re: [Dovecot] namespace delivery question

2013-07-02 Thread Steffen Kaiser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 27 Jun 2013, Laszlo Kiraly wrote: i...@domain.com <- public, readable by user2 us...@domain.com <- private us...@domain.com <- private The mailboxes are virtual, authentication through pam (kerberos). The public mailbox doesn't have valid k

Re: [Dovecot] namespace delivery question

2013-07-01 Thread Laszlo Kiraly
e --- > From: Daniel Parthey > To: k...@madalbal.hu,dovecot@dovecot.org > Sent: Sun, 30 Jun 2013 16:38:21 +0200 > Subject: Re: [Dovecot] namespace delivery question > > > Add the :create flag to your SIEVE rule in order to automatically > > create mailboxes if non

Re: [Dovecot] namespace delivery question

2013-07-01 Thread Laszlo Kiraly
the adresses (to, cc, bcc)? Thanks again, László Király -- Original Message --- From: Daniel Parthey To: k...@madalbal.hu,dovecot@dovecot.org Sent: Sun, 30 Jun 2013 16:38:21 +0200 Subject: Re: [Dovecot] namespace delivery question > Add the :create flag to your SIEVE rule in or

Re: [Dovecot] namespace delivery question

2013-06-30 Thread Daniel Parthey
Add the :create flag to your SIEVE rule in order to automatically create mailboxes if nonexistent. require "fileinto"; if address :is ["To","CC"] "i...@domain.com" { fileinto :create "public/info"; } Regards Daniel

Re: [Dovecot] namespace delivery question

2013-06-29 Thread Laszlo Kiraly
:54:26 test dovecot: lmtp(15045, info): Error: kQGGCmItz1HFOgAAaS8hrw: sieve: execution of script /home/vmail/sieve/global.sieve failed, but implicit keep was successful Jun 29 20:54:26 test dovecot: lmtp(15045): Disconnect from local: Client quit (in reset) --- -- Original Message -

Re: [Dovecot] namespace delivery question

2013-06-29 Thread Kiraly Laszlo
lic mails. In this way I could avoid double adjustments and checks. Best regards: Király László -- Original Message --- From: Thomas Leuxner To: dovecot@dovecot.org Sent: Fri, 28 Jun 2013 15:37:34 +0200 Subject: Re: [Dovecot] namespace delivery question > * Laszlo Kiraly 2013.

Re: [Dovecot] namespace delivery question

2013-06-28 Thread Thomas Leuxner
* Laszlo Kiraly 2013.06.28 15:51: > Will it work too if I rewrite "rcpt to" at transport time in exim? > > For example: i...@domain.com -> Public/i...@domain.com I only tried via sieve so far. Logic however tells me redirection/storage needs to occur after the LMTP stage, so I'd doubt that syn

Re: [Dovecot] namespace delivery question

2013-06-28 Thread Laszlo Kiraly
lic mails. In this way I could avoid double adjustments and checks. Best regards: Király László -- Original Message --- From: Thomas Leuxner To: dovecot@dovecot.org Sent: Fri, 28 Jun 2013 15:37:34 +0200 Subject: Re: [Dovecot] namespace delivery question > * Laszlo Kiraly 2013.

Re: [Dovecot] namespace delivery question

2013-06-28 Thread Thomas Leuxner
* Laszlo Kiraly 2013.06.27 14:20: > I couldn't find solution in the documentation, how can I manage the email > delivery to the public namespace? [...] > namespace { > location = sdbox:/home/vmail/public/%u > prefix = public. > separator = . > subscriptions = no > type = public > } Yo