I telnetted to the Redhat server through port 25 and i connect but i want to know the commands to send mail from the session. Its postfix.
Thanks
Printable View
I telnetted to the Redhat server through port 25 and i connect but i want to know the commands to send mail from the session. Its postfix.
Thanks
You can use telnet:
To get out of DATA, you put a . on a line by itself then hit enter. You should get a 250 OK at the end. 8)Code:telnet <IP> 25
EHLO
MAIL FROM: <from-email>
RCPT TO: <recipient-email>
DATA
Type message here.
.