litechforce Hello, I have a self hosted SMTP server (postfix) and ITFlow refuses to connect to it. I can connect to it via Thunderbird without issue. The App logs cut off the full error message, but here is what I have: Test email from ITFlow. Mailer Error: SMTP Error: Could not connect to SMTP host. Connection failed. stream_socket_enable_cr...
wrongecho Hello. Adjust your email sending Cron job to output to logger and then grep your syslog for the full output. 2>&1 | logger -t itflow
litechforce I adjusted the cronjob to look like this, but i am not showing anything in the syslog * * * * * portal /usr/bin/php /home/portal/public_html/scripts/cron_mail_queue.php 2>&1 | logger -t itflow
wrongecho Temporarily comment out the lines in the itflow cron file. Then, manually run the cron_mail_queue.php script using the below command. sudo -u www-data php /path/to/your/install/scripts/cron_mail_queue.php What output do you get?