Page 1 of 1

Custom SMTP greetings.

Posted: Tue Apr 07, 2015 5:34 pm
by synet2k_
I made changes in smtpd.cfg and set GREETING="SMTPd", restart scalix but nothing changes. Is it a bug?

Re: Custom SMTP greetings.

Posted: Tue Apr 14, 2015 10:58 am
by prakashnikhar
Hello,

If you added SMTP Greetings like

Code: Select all

GREETING=SMTPD
in

Code: Select all

 /var/opt/scalix/sys/smtpd.cfg


We can check through telnet command SMTP Greetings.

Telnet your server on port no. 25, then your output will be

Code: Select all

220 SMTPD


---Prakash N.

Re: Custom SMTP greetings.

Posted: Tue Jun 09, 2015 7:41 am
by ebhannes
Hi Prakash,

can you tell me which service i have to restart?
Can't restart the whole server...

Re: Custom SMTP greetings.

Posted: Tue Jun 09, 2015 8:11 am
by prakashnikhar
restart the Scalix SMTP Daemon:

omoff -d0 smtpd

omon smtpd

Re: Custom SMTP greetings.

Posted: Tue Jun 09, 2015 9:38 am
by ebhannes
Sorry, could have told you that restarting smtp relay was my first try, but without luck.
Still get "220 hostname ESMTP Sendmail 8.14...date"
Greeting message is a simple "SMTPD" like your earlier mentioned example.

Re: Custom SMTP greetings.

Posted: Mon Jun 15, 2015 4:40 pm
by ls-al
In a default Scalix installation sendmail is listeining on localhost while omsmtpd tries to catch port 25 on the public IP.
compare "netstat -tulpen | grep :25"

cheers,
Dirk

Re: Custom SMTP greetings.

Posted: Tue Jun 16, 2015 4:32 am
by ebhannes
Thanks for the info!
telnet localhost 25 answers with sendmail settings.
telnet ip-address 25 answers with omsmtpd banner "smtpd".

bye