postfix problem

Discussion in 'Installation/Configuration' started by aneu, Feb 28, 2007.

  1. aneu

    aneu New Member

    i have a problem with postfix... when i try to send an e-mail it says:

    Mar 1 06:33:30 mail postfix/smtpd[2927]: warning: 89.38.203.41: hostname homeuser-89-38-203-41.xplor.ro verification failed: Name or service not known
    Mar 1 06:33:30 mail postfix/smtpd[2927]: connect from unknown[89.38.203.41]
    Mar 1 06:33:30 mail postfix/smtpd[2927]: warning: unknown smtpd restriction: "elko.ro/aneu/Maildir/"
    Mar 1 06:33:30 mail postfix/smtpd[2927]: NOQUEUE: reject: RCPT from unknown[89.38.203.41]: 451 4.3.5 Server configuration error; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<XPUserPC>
    Mar 1 06:33:33 mail postfix/cleanup[2929]: 1FFEB25097: message-id=<[email protected]>
    Mar 1 06:33:33 mail postfix/smtpd[2927]: disconnect from unknown[89.38.203.41]
    Mar 1 06:33:33 mail postfix/qmgr[2926]: 1FFEB25097: from=<[email protected]>, size=822, nrcpt=1 (queue active)



    # mysql-sender.cf
    user = vmail
    password = password
    dbname = mail
    query = SELECT maildir FROM postfix_users where email='%s' and postfix = 'y'
    hosts = 127.0.0.1



    # smtpd.conf
    pwcheck_method: auxprop
    auxprop_plugin: sql
    mech_list: plain login

    sql_engine: mysql
    sql_hostnames: 127.0.0.1
    sql_user: vmail
    sql_passwd: password
    sql_database: mail
    sql_select: select clear from postfix_users where email='%u@%r' and smtpaccess='Y'



    i am stuck... what can i do ?
     
  2. falko

    falko Super Moderator Howtoforge Staff

    What's in /etc/postfix/main.cf (please strip out the comments) and in /etc/hosts? What's the output of
    Code:
    hostname -f
    ?
     

Share This Page