spam server failing to forward Help

Discussion in 'HOWTO-Related Questions' started by xpediant, Dec 7, 2006.

  1. xpediant

    xpediant New Member

    I setup with the following howto
    http://www.howtoforge.com/linux_spam_filter_mail_gateway

    The spam server is then supposed to pass on to a exchange server and continue on. My emails are failing to be forwarded now though. And if someone had some insight I would be thrilled.

    Current tail of mail log

    Dec 7 04:37:19 localhost postfix/master[934]: warning: /usr/libexec/postfix/proxymap: bad command startup -- throttling
    Dec 7 04:38:19 localhost postfix/pickup[988]: fatal: open database /etc/postfix/local-hot-names.db: No such file or directory
    Dec 7 04:38:19 localhost postfix/qmgr[989]: fatal: open database /etc/postfix/local-hot-names.db: No such file or directory
    Dec 7 04:38:19 localhost postfix/proxymap[990]: fatal: open database /etc/postfix/local-hot-names.db: No such file or directory
    Dec 7 04:38:20 localhost postfix/master[934]: warning: process /usr/libexec/postfix/pickup pid 988 exit status 1
    Dec 7 04:38:20 localhost postfix/master[934]: warning: /usr/libexec/postfix/pickup: bad command startup -- throttling
    Dec 7 04:38:20 localhost postfix/master[934]: warning: process /usr/libexec/postfix/qmgr pid 989 exit status 1
    Dec 7 04:38:20 localhost postfix/master[934]: warning: /usr/libexec/postfix/qmgr: bad command startup -- throttling
    Dec 7 04:38:20 localhost postfix/master[934]: warning: process /usr/libexec/postfix/proxymap pid 990 exit status 1
    Dec 7 04:38:20 localhost postfix/master[934]: warning: /usr/libexec/postfix/proxymap: bad command startup -- throttling
    Dec 7 04:39:20 localhost postfix/pickup[991]: fatal: open database /etc/postfix/local-hot-names.db: No such file or directory
    Dec 7 04:39:20 localhost postfix/qmgr[992]: fatal: open database /etc/postfix/local-hot-names.db: No such file or directory
    Dec 7 04:39:20 localhost postfix/proxymap[993]: fatal: open database /etc/postfix/local-hot-names.db: No such file or directory
    Dec 7 04:39:21 localhost postfix/master[934]: warning: process /usr/libexec/postfix/pickup pid 991 exit status 1
    Dec 7 04:39:21 localhost postfix/master[934]: warning: /usr/libexec/postfix/pickup: bad command startup -- throttling
    Dec 7 04:39:21 localhost postfix/master[934]: warning: process /usr/libexec/postfix/qmgr pid 992 exit status 1
    Dec 7 04:39:21 localhost postfix/master[934]: warning: /usr/libexec/postfix/qmgr: bad command startup -- throttling
    Dec 7 04:39:21 localhost postfix/master[934]: warning: process /usr/libexec/postfix/proxymap pid 993 exit status 1
    Dec 7 04:39:21 localhost postfix/master[934]: warning: /usr/libexec/postfix/proxymap: bad command startup -- throttling


    This is my current main.cf
    command_directory = /usr/sbin
    daemon_directory = /usr/libexec/postfix
    myhostname = mail2.marliness.net
    mydomain = marliness.net
    myorigin = $mydomain
    mynetworks_style = host
    mynetworks = 10.100.0.0/16, 127.0.0.0/8
    relay_domains = /etc/postfix/domains
    debug_peer_level = 2
    debugger_command =
    PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
    xxgdb $daemon_directory/$process_name $process_id & sleep 5
    sendmail_path = /usr/sbin/sendmail
    newaliases_path = /usr/bin/newaliases
    mailq_path = /usr/bin/mailq
    setgid_group = postdrop
    html_directory = no
    manpage_directory = /usr/local/man
    sample_directory = /etc/postfix
    readme_directory = no
    append_at_my_orgin = no
    header_checks = regexp:/etc/postfix/header_checks
    transport_maps = hash:/etc/postfix/transport
    virtual_maps = hash:/etc/postfix/virtusertable

    Any thoughts or tips for troubleshooting? If i am going about setting up a spam server the wrong way using the afore mentioned howto I would be intrested in that input as well.
    Thanks in advance
     
    Last edited: Dec 7, 2006
  2. falko

    falko Super Moderator Howtoforge Staff

    Please post the outputs of
    Code:
    postconf -d
    and
    Code:
    postconf -n
    Also, what's the output of
    Code:
    ls -l /etc/postfix
    ?
     

Share This Page