Hello ! if mail box quota exceed here two situation 1) if in filed TO: [email protected] message return to sender with body Mailquota Exceed ... it's correctly 2) but if in filed TO: "FirstName Lastname" <[email protected]> message return to /dev/null Procmail try return message to address [email protected], but not to from_address
in procmail.log see Folder: /usr/sbin/sendmail -oi -f"FirstName LastName" <[email protected]> -t why sendmail ? it's correct ? Two experiments. this: echo 111 | usr/sbin/sendmail -oi [email protected] [email protected] OK and this: echo 111 | usr/sbin/sendmail -oi -f"FirstName LastName" <[email protected]> [email protected] second command don't work of course. So, I think in command: /usr/sbin/sendmail -oi -f"FirstName LastName" <[email protected]> -t switch -t ignore in this situation.