On our mailing list, we have been getting the following message Maximum failsafe period has expired
. What does that mean?

- 834
- 6
- 19
-
What do you use to manage your mailing list ? – user9517 Aug 09 '10 at 13:30
-
It is home-made. In a program loop for each email address, we send out one email. – Mike Wills Aug 09 '10 at 13:38
-
Can you show more of the error message, or logs from the server? – Bill Weiss Aug 19 '10 at 16:43
1 Answers
It probably refers to the retry cycle that most mail transfer agents use in the face of error conditions that may be temporary (i.e. "can not contact server" is potentially a temporary problem due to network/DNS issues but "user does not exist" is pretty much considered to be a permanent state for the purpose of the current message).
What usually happens in these cases is that the message is dropped back on the queue to retry sending in a few minutes. After a couple of retries the mail server will start retrying every hour instead of every few minutes. After a few more it will start retrying every 24 hours, and after a few days it will bounce the message back. The amount of retries, and the periods between them, is not a defined standard: different mail servers will use different timings.
So if I were to get the "Maximum failsafe period has expired" message in a reply/bounce then I would assume the destination mail server is inaccessible.

- 22,754
- 45
- 67
-
Our mail server sends out "this couldn't be sent for the last 4 hours" as a bounce message. This happens almost immediately. Google searches haven't turned up anything for me. – Mike Wills Aug 14 '10 at 02:38
-
1Is it just one server/domain that is sending this message back, or many. If just one then it could indicate a fault like the mail server's queue being full due to not being able to forward things on to the next stage - it could just be bad design that is sends the same message for two queue related issues (individual mail on the queue too long and queue not having room to put the mail on the queue in the first place). – David Spillett Aug 14 '10 at 10:04
-
-
Can you tell anything about the mail server? If you telnet to port 25 on the domains mail servers it may tell you what it is, for instance mine announces itself as Postfix. That information may make tracking the meaning of the error down a little easier, though be aware that it is quite possible for the server to lie about itself in any such announcement. – David Spillett Aug 19 '10 at 20:22