Author Topic: Missing sender on read acknowledgement  (Read 4032 times)

Offline leake2019

  • Newbie
  • *
  • Posts: 6
Missing sender on read acknowledgement
« on: October 06, 2019, 12:37:53 PM »
I have installed RC version 1.3.10 on a Centos 7 PHP7.3 environment. I am able to send/receive OK EXCEPT when I send a read acknowledgement when I receive the following error message:

 SMTP Error: Failed to add recipient 'test01@mytest.co.uk'. to send email from a blank sender, enable blank senders (Code: 550) in /var/www/html/roundcube/program/lib/Roundcube/rcube.php on line 1667 (POST /webmail/?_task=mail&_framed=1&_action=sendmdn)

Any help in rectifiying this error would be appreciated.

Offline alec

  • Hero Member
  • *****
  • Posts: 1,365
Re: Missing sender on read acknowledgement
« Reply #1 on: October 07, 2019, 02:04:39 AM »
Code: [Select]
// According to RFC2298, return receipt envelope sender address must be empty.
// If this option is true, Roundcube will use user's identity as envelope sender for MDN responses.
$config['mdn_use_from'] = false;

Offline leake2019

  • Newbie
  • *
  • Posts: 6
Re: Missing sender on read acknowledgement
« Reply #2 on: October 07, 2019, 06:04:35 PM »
Thanks for your reply Alec. When I set 'mdn_use_from' to true and it ALWAYS automatically sends a read achnowledgement regardless of what 'mdn_requests' is set to (if '0' it should ask user if read acknowledgement should be sent). Is this by design or is it a bug? 

Offline alec

  • Hero Member
  • *****
  • Posts: 1,365
Re: Missing sender on read acknowledgement
« Reply #3 on: October 08, 2019, 02:21:14 AM »
That would be a bug, but I don't think that's the case. These two config options work on completely different level.