Returnpath and verified domains

@VVT - DAMN! -
Open the file i gave you and at line 169 you have:
Code:
// since 1.3.6.1
public $canConfirmDelivery = false;
After it add
Code:
// add this
public $force_sender = true;
So it becomes:
Code:
// since 1.3.6.1
public $canConfirmDelivery = false;

// add this
public $force_sender = true;
Save the file, this should fix it.
 
Got another error : Property "DeliveryServerSmtp.from" not defined :)

Actually these errors popup when I edit the bounce server and try to send validation email for that DS.
 
Last edited:
@VVT - in DeliveryServer.php somewhere at line 825 you have:
Code:
list($_fromEmail) = $this->getMailer()->findEmailAndName($this->from);
make it:
Code:
list($_fromEmail) = $this->getMailer()->findEmailAndName($params['from']);
 
  • Like
Reactions: VVT
@VVT - in DeliveryServer.php somewhere at line 825 you have:
Code:
list($_fromEmail) = $this->getMailer()->findEmailAndName($this->from);
make it:
Code:
list($_fromEmail) = $this->getMailer()->findEmailAndName($params['from']);

Applied all above updates and tested
# edited (back and forth) a bounce server: OK (no error messages in dashboard)
# sent validation email for that (edited b&f) DS where above BS is chosen: OK (no error messages in dashboard)
 
@twisted1919 thanks buddy, finally it work :) . I tested below conditions -

1. With an Email in BS : return path is BS Email and bounce processing works
2. Blank email in BS : return path is Campaign From Email and bounce processing still works.

Awesome !!! :)
 
Great @twisted1919 & @VVT
now that we have two confirmations,
here are all patches in one file since last release,
and all in the right place, so anyone can just copy & paste the folder ;)
 

Attachments

  • mailwizz-1.3.6.9=patchesTIL=04aug2016utc1225.zip
    53.2 KB · Views: 32
Patch didn't help me. Campaign stuck on processing or sending

check if at least one delivery server works, is available and customer quota is not limited
get back with errors from app/server logs
any specifics you supply make it more likely help succeeds
;)
 
Serban helped me to solve problem (too many connection)
But now i have anorher problem. 40% is SUCCESS and 60% FATALL-ERROR
See screens

My skype - smartboxpro.ru
 

Attachments

  • Screenshot_1.jpg
    Screenshot_1.jpg
    108.5 KB · Views: 32
Back
Top