Solution is quite simpel, will be at bottom of this post. I will give a report of my way – if you're not interested you can skip this ;)
After setting postfix into verbose mode in master.cf (-v in line 11) i figured out, that it was an ldap problem.
mail.log said:
Apr 1 16:31:20 androktasia postfix/smtpd[26396]: dict_ldap_lookup: In dict_ldap_lookup
Apr 1 16:31:20 androktasia postfix/smtpd[26396]: dict_ldap_lookup: No existing connection for LDAP source /etc/postfix/ldap-users.cf, reopening
Apr 1 16:31:20 androktasia postfix/smtpd[26396]: dict_ldap_connect: Connecting to server ldap://dione.myhost.de:389
Apr 1 16:31:20 androktasia postfix/smtpd[26396]: dict_ldap_connect: Actual Protocol version used is 3.
Apr 1 16:31:20 androktasia postfix/master[25958]: warning: process /usr/lib/postfix/smtpd pid 26396 killed by signal 6
Apr 1 16:31:20 androktasia postfix/master[25958]: warning: /usr/lib/postfix/smtpd: bad command startup — throttling
then i took a look into the corresponding ldap server-log file (after setting ldap into loglevelmode 256) /var/log/syslog I figured out, that i was an authentication problem.
So i googled for "postfix ldap" to get to know which tls format postfix wants to have and found this post in the german debianforum (source: http://debianforum.de/forum/vi…..p;start=0)
"Habe das Problem gelöst.
Es lag daran, dass Postfix "dev/[u]random" aus der chroot-Umgebung nicht erreicht hat. Ein einfach aber simpler Workaround ist folgender:
mkdir /var/spool/postfix/dev
cp -a /dev/random /var/spool/postfix/dev
cp -a /dev/urandom /var/spool/postfix/dev
Und schon funzt alles wie es soll. Andere Möglichkeit wäre Postfix aus chroot-umgebung rauszunehmen aber dies ist sicherheitstechnisch bedenklich.
"
Roughly said in english:
"Postfix could not access "/dev/[u]random" from chroot-environment. Simple Workarround:
mkdir /var/spool/postfix/dev
cp -a /dev/random /var/spool/postfix/dev
cp -a /dev/urandom /var/spool/postfix/dev
Now everything works as it should.Other possiiblity would be to take postfix out of the chroot-environment, but this is in the means of security very critical."
That worked for me!
Greetings from Germany and hail to your guide!