Failed Delivery Mails - jede Minute 6 Stück

eddyedfred

New Member
Hallo,

ich wende mich mal an dieses Forum, weil ich ein Problem habe, bei dem ich noch nicht weiß, wie ich es einordnen soll:

Ich habe in meiner Frma einen Scalix Server auf Debian Etch stable aufgesetzt. Scalix läuft standardmässig mit sendmail. Es funktioniert auch alles wunderbar, doch seit heute erhält ein Account ständig eine Delivery Failed Meldung von einer Mailadresse. Ich habe mich schon mit dem Provider auseinandergesetzt, bei dem die Mails gehosted sind. Dieser sagte mit, dass es wie schon oben erwähnt eine Fehlerbenachrichtigung ist, dass die Mail nicht zugestellt wurde. Ich kann aber in den LOG-Dateien auf dem Server kein Versand an diese Mailadresse feststellen.
Somit müsste also jemand im Namen der Mailadresse senden, was zur Folge hat, dass die Fehlermeldungen hier auflaufen.

Es ist verdammt nervig, weil es sich dabei um 6 Nachrichten pro Minute handelt.

Hab ich was in der sendmail.mc/sendmail.cf verbaselt, oder wie kann ich mich dagegen wehren?

Würde mich sehr über Hilfe freuen, weil ich gerade ziemlich ratlos bin.

Danke, Marco

sendmail.cf

Code:
define(`_USE_ETC_MAIL_')dnl
    include(`/usr/share/sendmail/cf/m4/cf.m4')dnl
    VERSIONID(`$Id: sendmail.mc, v 8.13.8-3 2006-12-08 20:21:10 cowboy Exp $')
    OSTYPE(`debian')dnl
    DOMAIN(`debian-mta')dnl
    dnl # Items controlled by /etc/mail/sendmail.conf - DO NOT TOUCH HERE
    undefine(`confHOST_STATUS_DIRECTORY')dnl        #DAEMON_HOSTSTATS=
    dnl # Items controlled by /etc/mail/sendmail.conf - DO NOT TOUCH HERE
    dnl #
    dnl # General defines
    dnl #
    dnl # SAFE_FILE_ENV: [undefined] If set, sendmail will do a chroot()
    dnl #   into this directory before writing files.
    dnl #   If *all* your user accounts are under /home then use that
    dnl #   instead - it will prevent any writes outside of /home !
    dnl #   define(`confSAFE_FILE_ENV',             `')dnl
    dnl #
    dnl # Daemon options - restrict to servicing LOCALHOST ONLY !!!
    dnl # Remove `, Addr=' clauses to receive from any interface
    dnl # If you want to support IPv6, switch the commented/uncommentd lines
    FEATURE(`no_default_msa')dnl
    dnl #DAEMON_OPTIONS(`Family=inet6, Name=MTA-v6, Port=smtp, Addr=::1')dnl
    dnl #DAEMON_OPTIONS(`Family=inet,  Name=MTA-v4, Port=smtp, Addr=127.0.0.1')dnl
    dnl #
    dnl #
    dnl #DAEMON_OPTIONS(`Family=inet6, Name=MSP-v6, Port=submission, Addr=::1')dnl
    DAEMON_OPTIONS(`Family=inet,  Name=MSP-v4, Port=submission, Addr=127.0.0.1')dnl
    dnl #
    DAEMON_OPTIONS(`Port=smtp,Name=MTA')dnl
    dnl # Be somewhat anal in what we allow
    define(`confPRIVACY_FLAGS',dnl
    `needmailhelo,needexpnhelo,needvrfyhelo,restrictqrun,restrictexpand,nobodyreturn,authwarnings')dnl
    dnl #
    dnl # Define connection throttling and window length
    define(`confCONNECTION_RATE_THROTTLE', `15')dnl
    define(`confCONNECTION_RATE_WINDOW_SIZE',`10m')dnl
    dnl #
    dnl # Define Smarthost
    define(`SMART_HOST',`myhost.de')dnl
    define(`confAUTH_MECHANISMS',`EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
    FEATURE(`authinfo',`hash -o /etc/mail/auth/client-info.db')dnl
    dnl #
    dnl # The access db is the basis for most of sendmail's checking
    FEATURE(`access_db', , `skip')dnl
    dnl #
    dnl # The greet_pause feature stops some automail bots - but check the
    dnl # provided access db for details on excluding localhosts...
    FEATURE(`greet_pause', `1000')dnl 1 seconds
    dnl #
    dnl # Delay_checks allows sender<->recipient checking
    FEATURE(`delay_checks', `friend', `n')dnl
    dnl #
    dnl # If we get too many bad recipients, slow things down...
    define(`confBAD_RCPT_THROTTLE',`3')dnl
    dnl #
    dnl # Stop connections that overflow our concurrent and time connection rates
    FEATURE(`conncontrol', `nodelay', `terminate')dnl
    FEATURE(`ratecontrol', `nodelay', `terminate')dnl
    dnl #
    dnl # If you're on a dialup link, you should enable this - so sendmail
    dnl # will not bring up the link (it will queue mail for later)
    dnl define(`confCON_EXPENSIVE',`True')dnl
    dnl #
    dnl # Dialup/LAN connection overrides
    dnl #
    dnl #include(`/etc/mail/m4/dialup.m4')dnl
    dnl #include(`/etc/mail/m4/provider.m4')dnl
    dnl #
    dnl # Masquerading options
    MASQUERADE_AS(`mydomain.de')dnl
    FEATURE(`always_add_domain')dnl
    dnl # FEATURE(`allmasquerade')dnl
    FEATURE(`masquerade_envelope')dnl


    dnl # Default Mailer setup
    MAILER_DEFINITIONS
    MAILER(`local')dnl
    MAILER(`smtp')dnl

    MAILER(scalix)dnl
 
Leider kenn ich mich mit Sendmail nicht aus. Allerdings kann ich dir trotzdem ein Schlagwort liefern mit dem du weiterkommen dürftest: Bei den Mails handelt es sich um Backscatter.

Prinzipiell entstehen sie wenn jemand mit Adressen deiner Domains Spam an nicht existierende Empfängeradressen sendet.

Wünsche viel Erfolg!

Marco
 
Danke Dir schon mal, Marco, für das Stichwort. Damit wird es mir wahrlich viel leichter fallen, eine Lösung für das Problem finden zu können.

Marco
 
Back
Top