[Dovecot] namespace delivery question
Hi list,
I like to have public mailboxes in addition to other private in the same domain, and manage the public mailbox permissions through acls.
For example:
info@domain.com <- public, readable by user2 user1@domain.com <- private user2@domain.com <- private
The mailboxes are virtual, authentication through pam (kerberos). The public mailbox doesn't have valid kerberos account.
My smtp server is exim 4.80. I set the mail delivery to lmtp.
I couldn't find solution in the documentation, how can I manage the email delivery to the public namespace?
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?
my dovecot config:
test:~# dovecot -n # 2.1.7: /etc/dovecot/dovecot.conf # OS: Linux 3.0.0-1-686-pae i686 Debian squeeze/sid managesieve_notify_capability = mailto managesieve_sieve_capability = fileinto reject envelope encoded-character vacation subaddress comparator-i;ascii-numeric relational regex imap4flags copy include variables body enotify environment mailbox date ihave namespace { location = sdbox:/home/vmail/public/%u prefix = public. separator = . subscriptions = no type = public } namespace inbox { inbox = yes location = sdbox:/home/vmail/private/%n mailbox Drafts { auto = subscribe special_use = \Drafts } mailbox Junk { special_use = \Junk } mailbox Sent { auto = subscribe special_use = \Sent } mailbox "Sent Messages" { special_use = \Sent } mailbox Spam { auto = subscribe special_use = \Junk } mailbox Trash { auto = subscribe special_use = \Trash } prefix = separator = . } passdb { driver = pam } plugin { acl = vfile sieve = /home/vmail/%n/.dovecot.sieve sieve_dir = /home/vmail/%n sieve_global_dir = /home/vmail/sieve } protocols = " imap lmtp sieve" service managesieve-login { inet_listener sieve { port = 4190 } service_count = 1 } ssl_cert =
Best regards: László Király
- Laszlo Kiraly l.kiraly@madalbal.hu 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 }
You can use sieve for that with LMTP:
if address :is ["To","CC"] "someone@domain.tld" { fileinto "Public.Mailbox.Folder"; }
I personally use / separators so not 100% the syntax applies to your scenario.
Thomas
Hi Thomas,
Thank you for your answer. I'm happy with / separators too so I changed them.
Will it work too if I rewrite "rcpt to" at transport time in exim?
For example: info@domain.com -> Public/info@domain.com
I have a file with email addresses for exim to distinguish public mails. In this way I could avoid double adjustments and checks.
Best regards: Király László
---------- Original Message ----------- From: Thomas Leuxner tlx@leuxner.net To: dovecot@dovecot.org Sent: Fri, 28 Jun 2013 15:37:34 +0200 Subject: Re: [Dovecot] namespace delivery question
- Laszlo Kiraly l.kiraly@madalbal.hu 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 }
You can use sieve for that with LMTP:
if address :is ["To","CC"] "someone@domain.tld" { fileinto "Public.Mailbox.Folder"; }
I personally use / separators so not 100% the syntax applies to your scenario.
Thomas ------- End of Original Message -------
Hi Thomas,
Thank you for your answer. I'm happy with / separators too so I changed them.
Will it work too if I rewrite "rcpt to" at transport time in exim?
For example: info@domain.com -> Public/info@domain.com
I have a file with email addresses for exim to distinguish public mails. In this way I could avoid double adjustments and checks.
Best regards: Király László
---------- Original Message ----------- From: Thomas Leuxner tlx@leuxner.net To: dovecot@dovecot.org Sent: Fri, 28 Jun 2013 15:37:34 +0200 Subject: Re: [Dovecot] namespace delivery question
- Laszlo Kiraly l.kiraly@madalbal.hu 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 }
You can use sieve for that with LMTP:
if address :is ["To","CC"] "someone@domain.tld" { fileinto "Public.Mailbox.Folder"; }
I personally use / separators so not 100% the syntax applies to your scenario.
Thomas ------- End of Original Message -------
- Laszlo Kiraly l.kiraly@madalbal.hu 2013.06.28 15:51:
Will it work too if I rewrite "rcpt to" at transport time in exim?
For example: info@domain.com -> Public/info@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 syntax would work.
Okay,
I have this in the config:
namespace { type = public prefix = public/ separator = / location = sdbox:/home/vmail/public/%u subscriptions = no }
And "sieve_before = /home/vmail/sieve/"
My sieve script here:
require "fileinto";
if address :is ["To","CC"] "info@domain.com" { fileinto "public/info"; }
I compiled it with sievec. If I send mail to info@domain.com I get " failed to store into mailbox 'public/info': Mailbox doesn't exist: info", and dovecot stores the mail in the private namespace.
I have
userdb { driver = static args = uid=1035 gid=8 home=/home/vmail/%Ln allow_all_users=yes }
where allow_all_users=yes theoretically makes mailboxes automatically.
I tried to create this mailbox manually but "doveadm mailbox create public/info" makes mailbox under /home/vmail/public/root/mailboxes/info/ which isn't, what I want.
What can I do?
My log:
Jun 29 20:54:26 test dovecot: lmtp(15045): Debug: Module loaded: /usr/lib/dovecot/modules/lib90_sieve_plugin.so Jun 29 20:54:26 test dovecot: lmtp(15045): Debug: auth input: info uid=1035 gid=8 home=/home/vmail/info Jun 29 20:54:26 test dovecot: lmtp(15045): Debug: changed username to info Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: Effective uid=1035, gid=8, home=/home/vmail/info Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: Namespace inbox: type=private, prefix=, sep=/, inbox=yes, hidden=no, list=yes, subscriptions=yes location=sdbox: /home/vmail/info Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: fs: root=/home/vmail/info, index=, control=, inbox=, alt= Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: Namespace : /home/vmail/info doesn't exist yet, using default permissions Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: Namespace : Using permissions from /home/vmail/info: mode=0700 gid=-1 Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: Namespace : type=public, prefix=public/, sep=/, inbox=no, hidden=no, list=yes, subscriptions=no location=sdbox:/ home/vmail/public/info Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: fs: root=/home/vmail/public/info, index=, control=, inbox=, alt= Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: Namespace public/: /home/vmail/public/info doesn't exist yet, using default permissions Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: Namespace public/: Using permissions from /home/vmail/public/info: mode=0700 gid=-1 Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: sieve: include: sieve_global_dir is not set; it is currently not possible to include `:global' scripts. Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: kQGGCmItz1HFOgAAaS8hrw: sieve: script file /home/vmail/info/.dovecot.sieve not found Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: kQGGCmItz1HFOgAAaS8hrw: sieve: user's script /home/vmail/info/.dovecot.sieve doesn't exist (using default script location instead) Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: kQGGCmItz1HFOgAAaS8hrw: sieve: no default script configured for user Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: kQGGCmItz1HFOgAAaS8hrw: sieve: user has no valid location for a personal script Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: kQGGCmItz1HFOgAAaS8hrw: sieve: executed before user's personal Sieve script(1): /home/vmail/sieve/global.sieve Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: kQGGCmItz1HFOgAAaS8hrw: sieve: opening script /home/vmail/sieve/global.sieve Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: kQGGCmItz1HFOgAAaS8hrw: sieve: script binary /home/vmail/sieve/global.svbin successfully loaded Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: kQGGCmItz1HFOgAAaS8hrw: sieve: binary save: not saving binary /home/vmail/sieve/global.svbin, because it is alre ady stored Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: kQGGCmItz1HFOgAAaS8hrw: sieve: executing script from /home/vmail/sieve/global.svbin Jun 29 20:54:26 test dovecot: lmtp(15045, info): Error: kQGGCmItz1HFOgAAaS8hrw: sieve: msgid=E1Ut0Hy-0003uZ-4c@test.madalbal.hu: failed to store into mailbox 'public/info': Mailbox doesn't exist: info Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: Namespace : /home/vmail/info/mailboxes/INBOX doesn't exist yet, using default permissions Jun 29 20:54:26 test dovecot: lmtp(15045, info): Debug: Namespace : Using permissions from /home/vmail/info: mode=0700 gid=-1 Jun 29 20:54:26 test dovecot: lmtp(15045, info): kQGGCmItz1HFOgAAaS8hrw: sieve: msgid=E1Ut0Hy-0003uZ-4c@test.madalbal.hu: stored mail into mailbox 'INBOX' Jun 29 20: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 ----------- From: Thomas Leuxner tlx@leuxner.net To: dovecot@dovecot.org Sent: Fri, 28 Jun 2013 15:37:34 +0200 Subject: Re: [Dovecot] namespace delivery question
- Laszlo Kiraly l.kiraly@madalbal.hu 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 }
You can use sieve for that with LMTP:
if address :is ["To","CC"] "someone@domain.tld" { fileinto "Public.Mailbox.Folder"; }
I personally use / separators so not 100% the syntax applies to your scenario.
Thomas ------- End of Original Message -------
Add the :create flag to your SIEVE rule in order to automatically create mailboxes if nonexistent.
require "fileinto";
if address :is ["To","CC"] "info@domain.com" { fileinto :create "public/info"; }
Regards Daniel
Thank you everyone for your help, it works.
I have now one more question:
If I send mail to: info@domain.com , cc: l.kiraly@domain.com, I get two emails to info@domain.com, because of sieve_before executes this script for all the mailboxes.
How can I persuade dovecot to deliver the mail all the adresses (to, cc, bcc)?
Thanks again, László Király
---------- Original Message ----------- From: Daniel Parthey d.parthey@metaways.de To: kiru@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 nonexistent.
require "fileinto";
if address :is ["To","CC"] "info@domain.com" { fileinto :create "public/info"; }
Regards Daniel ------- End of Original Message -------
Otherwise asking: can I set sieve filter per namespace?
I mean, one which is only for the public namespace.
Thanks again, László Király
Thank you everyone for your help, it works.
I have now one more question:
If I send mail to: info@domain.com , cc: l.kiraly@domain.com, I get two emails to info@domain.com, because of sieve_before executes this script for all the mailboxes.
How can I persuade dovecot to deliver the mail all the adresses (to, cc, bcc)?
Thanks again, László Király
---------- Original Message ----------- From: Daniel Parthey d.parthey@metaways.de To: kiru@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 nonexistent.
require "fileinto";
if address :is ["To","CC"] "info@domain.com" { fileinto :create "public/info"; }
Regards Daniel ------- End of Original Message ------- ------- End of Original Message -------
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Thu, 27 Jun 2013, Laszlo Kiraly wrote:
info@domain.com <- public, readable by user2 user1@domain.com <- private user2@domain.com <- private
The mailboxes are virtual, authentication through pam (kerberos). The public mailbox doesn't have valid kerberos account.
I couldn't find solution in the documentation, how can I manage the email delivery to the public namespace?
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 info@domain.com to <user>#Public.Mailbox.Folder@domain.com . 1st option tells LMTP to use the detail (subaddress) as default mailbox, which is essentially the same as the -m option of the LDA. 2nd options sets the delimiter of user and detail. <user> must habe write permission to the folder.
Regards,
Steffen Kaiser -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux)
iQEVAwUBUdLHeV3r2wJMiz2NAQJp/Qf+JG6RYpMbgP9K+POoaP4mFHPNr2NXcLlK RhO7GtOimZpyQZPeofStxJQwY4clRdKpKsmpMlhb1muXyvoHkB6Tn5TDO18Anqlq /Yp8li53rsx4hVptqI84tiZrPiPX52U7FJmM/j95a+gFelTOgOPFwNoTaIIMAQau qn1rVa4BYIhMUQTP4WJDnj+gs8Fd1LapajBcVR0yaMGkWKRLKjsOrgFzDaxQqpxk 8erJnGV68p+wEl0jnWEF2+U8XubvhqHJTbkrcBC7DsqONBzlXC7mc+xyycb+0okD 54dHI6YcSLvzDEI3uaOqoBxad4e2fvziEgYJ7Ph78aH80psAWNmu3A== =rJPs -----END PGP SIGNATURE-----
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 info@domain.com to
What kind of alias do you think? At smtp time, like in the /etc/aliases? Eventually, i can configure exim to accept the "#" and "/" chars in the email address.
<user>#Public.Mailbox.Folder@domain.com . 1st option tells LMTP to use the detail (subaddress) as default mailbox, which is essentially the same as the -m option of the LDA. 2nd options sets the delimiter of user and detail. <user> must habe write permission to the folder.
Regards,
Steffen Kaiser
Best regards: Király László
-----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_mailbox = yes recipient_delimiter = #
you could alias info@domain.com to
What kind of alias do you think? At smtp time, like in the /etc/aliases? Eventually, i can configure exim to accept the "#" and "/" chars in the email address.
Yes, SMTP time aliases - exim aliases for a local address. I do this often. Actually, exim might use '+' or '-' as delimiter already, I'm not sure. No need to use # exactly.
<user>#Public.Mailbox.Folder@domain.com . 1st option tells LMTP to use the detail (subaddress) as default mailbox, which is essentially the same as the -m option of the LDA. 2nd options sets the delimiter of user and detail. <user> must habe write permission to the folder.
Steffen Kaiser -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux)
iQEVAwUBUdLZd13r2wJMiz2NAQIICAf7BsJ2o8uUutSFCxk5gftAfRbFBWbnLrEz i4/NVueVZLl1AyOZ5GujLDmPhvPPNS8mL9+wMs1qKT1rrJz7q5BatDCj/LMp0YVr 8d/HM6g/8U4pwjZxq54S15fs0nZDR+XmPg+q4RcB8lAU+ns36rXEDb6EZ7M2b/RM vdNqJYWs9kVZe9WkUKrWv/scZh04dI3iutgdCkc+iMcJsSJw4TWM61RgolzN2+wd iowUbc6X9HTNnDWziaPt78HMLNVh70BOE8uMiJtcPytxpCmMWZo48lds79i3CKdc SLFI3oXH5P0hkHbUymCVNhI3aSJQwlu514VlVEVp9lTleH//f5C5JQ== =9ZIT -----END PGP SIGNATURE-----
Thanks Steffen,
It mostly works.
my public namespace config:
namespace { type = public prefix = public/ separator = / location = sdbox:/home/vmail/public/ list = no subscriptions = no }
If I rewrite info@domain.com to vmail+public/info@domain.com, then it saved to /home/vmail/public/mailboxes/info however if I get mail to vmail+public/info@anotherdomain.com then it's saved to the same mailbox.
How can I set dovecot to save to different mailboxes?
Regards: Király László
---------- Original Message ----------- From: Steffen Kaiser skdovecot@smail.inf.fh-brs.de To: kiru@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:
info@domain.com <- public, readable by user2 user1@domain.com <- private user2@domain.com <- private
The mailboxes are virtual, authentication through pam (kerberos). The public mailbox doesn't have valid kerberos account.
I couldn't find solution in the documentation, how can I manage the email delivery to the public namespace?
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 info@domain.com to <user>#Public.Mailbox.Folder@domain.com . 1st option tells LMTP to use the detail (subaddress) as default mailbox, which is essentially the same as the -m option of the LDA. 2nd options sets the delimiter of user and detail. <user> must habe write permission to the folder.
Regards,
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 info@domain.com to vmail+public/info@domain.com, then it saved to /home/vmail/public/mailboxes/info however if I get mail to vmail+public/info@anotherdomain.com then it's saved to the same mailbox.
How can I set dovecot to save to different mailboxes?
if both users vmail@domain.com and vmail@anotherdomain.com have "append" permission to public/info, vmail+public/info@anotherdomain.com will save the message there, because that's the idea of lmtp_save_to_detail_mailbox . vmail+public/info@anotherdomain.com means: do not save to INBOX of vmail@anotherdomain.com, but to public/info with the permission of user vmail@anotherdomain.com. That applies to all other users as well.
If you want to store info@anotherdomain.com somewhere else, create another SMTP alias to another mailbox, e.g.:
info@anotherdomain.com -> vmail+public/info-anotherdomain@anotherdomain.com
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?
Steffen Kaiser -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux)
iQEVAwUBUdQo2F3r2wJMiz2NAQIO8ggAsnaAZaJjtClKzIYOXK2y5SvQzKdnOI03 UOeSf5e99AXWZKZSP+fC+pXra9pNQzicYYQoOabeLPCodvkGt8m2lDslksTSjN6P fzx0HSxxns1wWgUQtLjkBrgdCoKie4irgyCMfByFDmmLjeYVCWtME1cFazUWScLq n+x3qDSFUSHNJbN30X2/UnsIqS/HxMD/VX+8dplhX385z6ZR6XxgZHbjM28LOugS mgfaf42eaqTf/jDgIBJzF23zhITrMb3C4cjWi3pssv/DVc1cuKFchJttdSrTEsMt vgo791cjS+w+kuCZnZKAXiyLKzApk7akRD+kDtzcFpEeoXd5P6YhaA== =ILOl -----END PGP SIGNATURE-----
If I rewrite info@domain.com to vmail+public/info@domain.com, then it saved to /home/vmail/public/mailboxes/info however if I get mail to vmail+public/info@anotherdomain.com then it's saved to the same mailbox.
How can I set dovecot to save to different mailboxes?
if both users vmail@domain.com and vmail@anotherdomain.com have "append" permission to public/info, vmail+public/info@anotherdomain.com will save the message there, because that's the idea of lmtp_save_to_detail_mailbox . vmail+public/info@anotherdomain.com means: do not save to INBOX of vmail@anotherdomain.com, but to public/info with the permission of user vmail@anotherdomain.com. That applies to all other users as well.
If you want to store info@anotherdomain.com somewhere else, create another SMTP alias to another mailbox, e.g.:
info@anotherdomain.com -> vmail+public/info-anotherdomain@anotherdomain.com
Thanks, that is the trick.
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 SMTP time in exim? I think, I do exactly the same. I have a list with public mails and rewrite rules for them. I use this list in an acl to check it's a public mailbox or not. Of course vmail isn't a valid recipient.
I have now a fully working system. :)
Thank you all for the very useful answers.
Regards: Laszlo Kiraly
-----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 SMTP time in exim? I think, I do exactly the same. I have a list with public mails and rewrite rules for them. I use this list in an acl to check it's a public mailbox or not.
did you tested it ;-)
I have now a fully working system. :)
fine!
Steffen Kaiser -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux)
iQEVAwUBUdU/vF3r2wJMiz2NAQLlKgf7Bzm6I5v2TIHEamt2J/viRBlZA8etNbPI gEkiCYpkj6tsySgDlRVCpWwF60HH2Hg1nCy8KEm28JTEaSn8xocxpE800d0KgKmo FgbElbUE3L8IQKpVAS1ny7/Rg0lr91/e5bzll3XcGZKtstvjbeiqJcThROpZWewy 3NIyntdQLnKVjHZqvpYpd8W2ZwzaltaQJg0RLKj1nZZMHfv2xWu/ulasMZ0YBprG ixKJRrIPwTHeEGqk8hT6kudkks+ptltVzeoL4vXT7T03gXxzJtLlSRO+7Ztpic5J B3KxuhMqOunVjZkrZAvJnryeERac4HRqusUxB6tr4gYo+7P+BAYMbQ== =ApuF -----END PGP SIGNATURE-----
participants (5)
-
Daniel Parthey
-
Kiraly Laszlo
-
Laszlo Kiraly
-
Steffen Kaiser
-
Thomas Leuxner