• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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