So successfully installed PHP 7.4 and I switched some sites to use it.
By chance in fact I was doing some tests on a website (build with Wordpress) and when I filled a contact form the email was not delivered.
Checking the exim logs I got this:
Switching it back to PHP 7.3 the contact form is working and the exim log is like this:
So for some reason the cwd is getting not the right path.
I'm using a ninja-forms as WP plugin for the contact form and that is using PHPMailer.
Not sure yet if it's an issue there or if it's something server / PHP configuration related.
Like this I want to put the attention "on the table".
By chance in fact I was doing some tests on a website (build with Wordpress) and when I filled a contact form the email was not delivered.
Checking the exim logs I got this:
Code:
2019-12-07 21:18:17 cwd=/ 5 args: /usr/sbin/sendmail -t -i -f [email protected]
2019-12-07 21:18:17 1idgWv-0003ny-Kh acl_m_script_path '/' is never allowed for Users.
2019-12-07 21:18:17 1idgWv-0003ny-Kh <= [email protected] U=id115 P=local S=790 [email protected] T="Contact form" from <[email protected]> for [email protected]
2019-12-07 21:18:17 1idgWv-0003ny-Kh => blackhole (non-SMTP ACL discarded recipients)
2019-12-07 21:18:17 1idgWv-0003ny-Kh Completed
Switching it back to PHP 7.3 the contact form is working and the exim log is like this:
Code:
2019-12-07 21:24:37 cwd=/home/id115/domains/sender-domain.com/public_html/wp-admin 5 args: /usr/sbin/sendmail -t -i -f [email protected]
2019-12-07 21:24:37 1idgd3-0004XJ-5j <= [email protected] U=id115 P=local S=794 [email protected] T="Contact form" from <[email protected]> for [email protected]
2019-12-07 21:24:37 cwd=/var/spool/exim 3 args: /usr/sbin/exim -Mc 1idgd3-0004XJ-5j
2019-12-07 21:24:37 1idgd3-0004XJ-5j => info <[email protected]> F=<[email protected]> R=virtual_user T=dovecot_lmtp_udp S=940 C="250 2.0.0 <[email protected]> QO7IDYUK7F0pHwAAYDDtvw Saved"
2019-12-07 21:24:37 1idgd3-0004XJ-5j Completed
So for some reason the cwd is getting not the right path.
I'm using a ninja-forms as WP plugin for the contact form and that is using PHPMailer.
Not sure yet if it's an issue there or if it's something server / PHP configuration related.
Like this I want to put the attention "on the table".