I tested SMTP on my qmail installation (installed with "life with Qmail")
with TEST.receive
1. SMTP server test: Forge some mail locally via SMTP. Replace ``me''
with your username and ``domain'' with your host's name.
% telnet 127.0.0.1 25
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
220 domain ESMTP
helo dude
250 domain
mail <gast@mydomain>
250 ok
rcpt <gast@mydomain>
250 ok
data
354 go ahead
Subject: testing
This is a test.
.
250 ok 812345679 qp 12345
quit
221 domain
Everything worked fine at the shell but I couldn't find the test email in
the gast Mailbox ? Why could be the reason ?
Thanks!