lokaler SMTP mit Postfix

facebraker

New Member
*solved*lokaler SMTP mit Postfix

Hi Leute,

ich bin hier am verzweifeln, ein simples Problem, wo ich mir sagte "No Problem", aber nix wars.

Ich habe einen lokalen Mailserver mit Postfix, Dovecot + MySQL laufen, Emails hole ich mit Fetchmail ab.

Ich möchte nun, nur einen lokalen SMTP einrichten, der gegebenenfalls Mails von meinen Servern annimmt und lokal zustellt.

Ich dachte nicht das Problem, aber ich bekomme Postfix nicht dazu auf etwas anderes als localhost zu lauschen:

Also ein
Code:
telnet localhost smtp
funktioniert
aber ein
Code:
telnet 192.168.125.62 smtp
meckert er rum:

:/etc/postfix# telnet 192.168.125.62 smtp
Trying 192.168.125.62...
telnet: Unable to connect to remote host: Connection refused

soweit klar, denn ein
Code:
netstat -tulpe | grep smtp
liefert:
tcp 0 0 localhost:smtp *:* LISTEN root 65846 22548/master

Also lauscht er nur auf localhost, aber ich denke ich habe alle main.cf Einstellungen gemacht:

mydestination = email-svrfirma.dom-apro.local, localhost.dom-firma.local, localhost
#relayhost = smtp.dom-firma.local
relayhost = 127.0.0.1
#mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
mynetworks = 127.0.0.0/8 , 192.168.125.0/24
#mynetworks = 192.168.125.0/24
#mynetworks_style = subnet
inet_interfaces = all

Wie ihr seht habe ich schon einiges probiert, aber nützt nichts.

Hier noch meine master.cf:

# ==========================================================================
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
smtp inet n - - - - smtpd

Irgendwie fehlt mir was, aber ich komme nicht drauf, Sorry!

Habt ihr einen Tipp?

Danke!!

Gruß Alex
 
Last edited by a moderator:
Hallo,

es hat sich erledigt, ein
Code:
postfix reload
hilft nicht bei den
Interface Einstellungen, nur ein start/stop

Dann ging es gleich auf Anhieb.

Danke

Gruss Alex
 
Back
Top