"250-AUTH PLAIN LOGIN" instead of "250-AUTH LOGIN PLAIN"

Discussion in 'HOWTO-Related Questions' started by kaixendog, May 18, 2008.

  1. kaixendog

    kaixendog New Member

    In the Ubuntu 8.04 Perfect Server Howto; following the Postfix configuration; I telnet to port 25 and perform the "ehlo localhost" and the the following:

    "250-AUTH PLAIN LOGIN" instead of "250-AUTH LOGIN PLAIN" as is listed in the Howto.

    First question is, of course; Why did this happen / what caused this?
    Second question is; how will this affect my Postfix server's functionality or will it?

    I copied and pasted the commands into my SSH session, so I know the commands were typed verbatim. I'm setting up two servers, this being the second one, and the first one worked just as described in the Howto, but this second one (done about a week later) gives a different result.

    Any help appreciated.
     
  2. falko

    falko Super Moderator Howtoforge Staff

    The order doesn't matter at all, so you can ignore this. :)
     
  3. omichaelshar

    omichaelshar New Member

    I have been following the same tutorial and "ehlo local host" produces the following output:

    250-AUTH PLAIN LOGIN CRAM-MD5 NTLM DIGEST-MD5
    250-AUTH=PLAIN LOGIN CRAM-MD5 NTLM DIGEST-MD5

    Is this an issue?

    If so, how can I fix it?

    Help gratefully appreciated....
     
  4. falko

    falko Super Moderator Howtoforge Staff

    What's in /etc/postfix/sasl/smtpd.conf?
     
  5. omichaelshar

    omichaelshar New Member

    cat /etc/postfix/sasl/smtpd.conf

    pwcheck_method: saslauthd
    mechlist: plain login

    Any suggestions?
     
    Last edited: Jul 7, 2008
  6. falko

    falko Super Moderator Howtoforge Staff

    Are you using Ubuntu 8.04?
    What's the output of
    Code:
    netstat -tap
    and
    Code:
    uname -a
    ?
     
  7. omichaelshar

    omichaelshar New Member

    Thanks Falko for your interest.

    Yes, I am using Ubuntu 8.04. Clean install from ISO with OpenSSL, PostgreSQL and Samba. Then followed instructions in your tutorial perfect-server-ubuntu8.04-lts.

    netstat -tap output below:
    Code:
    Active Internet connections (servers and established)
    Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
    tcp        0      0 *:mysql                 *:*                     LISTEN      5657/mysqld
    tcp        0      0 *:netbios-ssn           *:*                     LISTEN      5926/smbd
    tcp        0      0 *:www                   *:*                     LISTEN      6084/apache2
    tcp        0      0 2mar-fs02.2MAROO:domain *:*                     LISTEN      5542/named
    tcp        0      0 localhost.locald:domain *:*                     LISTEN      5542/named
    tcp        0      0 localhost.lo:postgresql *:*                     LISTEN      5735/postgres
    tcp        0      0 *:smtp                  *:*                     LISTEN      5907/master
    tcp        0      0 localhost.localdoma:953 *:*                     LISTEN      5542/named
    tcp        0      0 *:https                 *:*                     LISTEN      6084/apache2
    tcp        0      0 *:microsoft-ds          *:*                     LISTEN      5926/smbd
    tcp6       0      0 [::]:imaps              [::]:*                  LISTEN      5808/couriertcpd
    tcp6       0      0 [::]:pop3s              [::]:*                  LISTEN      5842/couriertcpd
    tcp6       0      0 [::]:pop3               [::]:*                  LISTEN      5822/couriertcpd
    tcp6       0      0 [::]:imap2              [::]:*                  LISTEN      5788/couriertcpd
    tcp6       0      0 [::]:ftp                [::]:*                  LISTEN      6037/proftpd: (acce
    tcp6       0      0 [::]:domain             [::]:*                  LISTEN      5542/named
    tcp6       0      0 [::]:ssh                [::]:*                  LISTEN      5562/sshd
    tcp6       0      0 [::]:smtp               [::]:*                  LISTEN      5907/master
    tcp6       0      0 ip6-localhost:953       [::]:*                  LISTEN      5542/named
    tcp6       0      0 2mar-fs02.2MAROOBA:ssh  192.168.0.101%8191:4097 ESTABLISHED 6113/sshd: omichael
    
    uname -a output below:
    Code:
    Linux 2mar-fs02.2marooba 2.6.24-16-server #1 SMP Thu Apr 10 13:58:00 UTC 2008 i686 GNU/Linux
    
     
  8. falko

    falko Super Moderator Howtoforge Staff

    What's the output of
    Code:
    updatedb
    locate smtpd.conf
    ?
     

Share This Page