-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can retry interval be configured? #133
Comments
i don't think so. the retry is exponential, i think. |
Ok, thanks. Anything stupid/dangerous about running a |
You should be fine, but it won't do anything. What are you trying to do? |
My backup system, which backs up my email with the email service stopped, doesn't finish/exit until its email report is delivered. I don't bring mail server backup until the backup is complete. Chicken/egg. My intent is to run dma with the The above seems a bit of a kludge, so I may just install Postfix on the backup server. Just trying to make the defaults of my new FBSD 14.0 install work as-is. |
How does the backup system know that the report has been delivered? dma should exit with success once the queue file has been written. |
AMANDA, the backup utility, spawns off My observation has been that the sendmail process remains running until the mail system comes up. A complicating factor is the mail system being backed up hosts the backup report recipient address. Workflow:
|
dma will daemonize once the queue file has been written, which means that it'll fork into the background and the parent exits. Is there some special code that deals with process groups? |
The same sendmail processes waiting behavior is generated by other services such as Nagios (monitoring). e.g. sendmail -i (dma). It may just be something on this server. Its a new installation of FreeBSD 14.0. Maybe there's something about the default MTA setup that's causing sendmail to wait for delivery. If I find the answer, I'll post it here. Thanks for your help! |
Is it possible to configure the delivery retry interval?
The text was updated successfully, but these errors were encountered: