This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

[solved]Extern unzustellbare eMail nach x-Stunden automatisch zurück weisen?

Hallo,

ist es möglich Mails die eine bestimmte Zeit lang nicht extern zugestellt worden sind automatisch an den internen Absender zurück zuweisen?

Mir geht es um die eMails die man im SMTP-Spool manuell "verarbeiten" kann.



This thread was automatically locked due to age.
Parents
  • Hallo Marc,

    (Sorry, my German-speaking brain isn't creating thoughts at the moment. [:(])

    I had the same question several years ago.  Here's what I found:

    To see the retry configuration in exim.conf

     # grep -B 1 -A 4 'begin retry' /var/storage/chroot-smtp/etc/exim.conf
     
    The result I got was:

     # --- Retry section ------------------------------------------------------
     begin retry
     
     *         * F,2h,2m; G,16h,1h,1.5; F,3d,6h
     

    * = all domains
    * = all errors
    F,2h,2m = Fixed, retry every 2 minutes for up to 2 hours.
    G,16h,1h = Geometrically increasing, retry in 1 hour, 1.5 hours, 2.25 hours, etc. for up to 16 hours.
    F,3d,6h = Retry every 6 hours up to 3 days.

    After 3 days, the messages are bounced.

    To have messages bounced for lawyerbill.com after 16 hours, but to treat all other messages
    with the default above, add a line above the default:

     lawyerbill.com * F,2h,2m; G,16h,1h,1.5;
     *         * F,2h,2m; G,16h,1h,1.5; F,16h,4h

    MfG - Bob (Bitte auf Deutsch weiterhin.)

     
    Sophos UTM Community Moderator
    Sophos Certified Architect - UTM
    Sophos Certified Engineer - XG
    Gold Solution Partner since 2005
    MediaSoft, Inc. USA
  • Hallo Bob,

    da ist genau das was ich suche, danke!

    Gibt es zur exim.conf eine Doku? Da scheint ja eine Menge möglich zu sein.

    Herzlichen Dank und ein schönes Wochenende

    Marc

    Grüße aus dem Sauerland und dem Ruhrgebiet

    Marc

  • I'm not sure, Marc.  I think I probably just looked at the documentation on exim.org, but I've slept since then!  If this is a paid license, be sure to get Sophos' approval before you make any changes.

    MfG - Bob (Bitte auf Deutsch weiterhin.)

     
    Sophos UTM Community Moderator
    Sophos Certified Architect - UTM
    Sophos Certified Engineer - XG
    Gold Solution Partner since 2005
    MediaSoft, Inc. USA
Reply
  • I'm not sure, Marc.  I think I probably just looked at the documentation on exim.org, but I've slept since then!  If this is a paid license, be sure to get Sophos' approval before you make any changes.

    MfG - Bob (Bitte auf Deutsch weiterhin.)

     
    Sophos UTM Community Moderator
    Sophos Certified Architect - UTM
    Sophos Certified Engineer - XG
    Gold Solution Partner since 2005
    MediaSoft, Inc. USA
Children