• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Bad Return-Path anonymous@hostname sent through scripts...

J

jspilon

Guest
Hi there,

Whenever an email is sent through a script ( perl or php ) the Return-Path is set to anonymous@hostname. I know that mail() in php requires the Return-Path argument, otherwise sendmail will then add the anonymous@hostname it self

Is there anyway to control what email address is written in there by sendmail ( qmail ) ?

Is there a way to set default mail() Return-Path to match the from address ?

Or is the only way to fix this behavior is by having my customers coding properly ?

Thanks
 
Hi,

You can try calling sendmail in your script using

/usr/sbin/sendmail -t -fyouraddress@whatever

If that does not work try

/usr/sbin/sendmail -t -fyouraddress@whatever -Fyouraddress@whatever

Make sure to use the correct path to sendmail and change youraddress@whatever to the return "From" address.

Hope that helps.

- Dave
 
Back
Top