LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   1 week delay of the postfix notification if recipient is undeliverable (https://www.linuxquestions.org/questions/linux-server-73/1-week-delay-of-the-postfix-notification-if-recipient-is-undeliverable-622188/)

repolona 02-19-2008 04:37 AM

1 week delay of the postfix notification if recipient is undeliverable
 
Hi,

how can i setup my postfix to email me a Mailer Daemon in just 1 hour if the recipient is undeliverable. currently it took me 1 week just to know its undeliverable.

this is my current settings in main.cf
==================================================================
==================================================================
queue_directory = /var/spool/postfix
command_directory = /usr/sbin
daemon_directory = /usr/libexec/postfix

myhostname = testtest.com
mydomain = testtest.com

mail_owner = postfix

inet_interfaces = all
mydestination = $myhostname, localhost.$mydomain, localhost

unknown_local_recipient_reject_code = 550
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
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.postfix
newaliases_path = /usr/bin/newaliases.postfix
mailq_path = /usr/bin/mailq.postfix
setgid_group = postdrop
html_directory = no
manpage_directory = /usr/share/man
sample_directory = /usr/share/doc/postfix-2.1.5/samples
readme_directory = /usr/share/doc/postfix-2.1.5/README_FILES
smtpd_sasl_local_domain =
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination
mynetworks = 127.0.0.0/8
smtpd_tls_auth_only = no
smtp_use_tls = yes
smtpd_use_tls = yes
smtp_tls_note_starttls_offer = yes
smtpd_tls_key_file = /etc/postfix/ssl/smtpd.key
smtpd_tls_cert_file = /etc/postfix/ssl/smtpd.crt
smtpd_tls_CAfile = /etc/postfix/ssl/cacert.pem
smtpd_tls_loglevel = 1
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
tls_random_source = dev:/dev/urandom
home_mailbox = Maildir/
mailbox_command =
==================================================================
==================================================================




thanks
Ronald Repolona

billymayday 02-19-2008 04:53 AM

maximal_queue_lifetime = 1h

will do that. One hour is pretty short though if there's a problem along the way

Berhanie 02-20-2008 08:50 PM

Quote:

how can i setup my postfix to email me a Mailer Daemon in just 1 hour if the recipient is undeliverable. currently it took me 1 week just to know its undeliverable.
As Billymayday implies, you probably shouldn't fool with the queue lifetime. Adding delay to the notify_classes parameter might be of interest to you.

Edit: I just saw that you're using 2.1. Not sure if my advice applies to that version.

repolona 02-21-2008 04:04 AM

thanks for your help!! billy and berhanie :-)


All times are GMT -5. The time now is 09:59 AM.