Romie> Here is my tcp.smtp file
Romie> :allow,SMTPAUTH=""

Romie> I did the tcprules /etc/tcp.smtp.cdb /etc/tcp.smtp.tmp <
/etc/tcp.smtp

Romie> and here is my smtp log after i put recordio on my script.
Romie> 2004-04-13 09:54:54.727761500 30998 > 250-STARTTLS
Romie> 2004-04-13 09:54:54.727778500 30998 > 250 8BITMIME
Romie> 2004-04-13 09:54:54.730430500 30998 < AUTH PLAIN
Romie> 2004-04-13 09:54:54.730531500 30998 > 502 unimplemented (#5.5.1)

It appears your qmail-smtpd is not finding SMTPAUTH in its environment.

You might want to check your run script to verify tcpserver -x is using
tcp.smtp or you could add SMTPAUTH into its environment via the run script.

The code in qmail-smtpd shows it will work if SMTPAUTH is in its
environment:

if (env_get("SMTPAUTH")) {
    flagauth = 1;

if (flagauth)
    out("250-AUTH LOGIN PLAIN\r\n");
  out("250 8BITMIME\r\n");

if (!flagauth) {
    err_unimpl((char *)0);
    return;

Reply via email to