I always use postfix but sendmail should work too. I would check var/log/maillog to see if the server is actually trying to send the email.
If it is and getting rejected at the receiving end the log will show that too. In that case you could set up a gmail relay. You would want to remove sendmail and install postfix if you are trying to do that and then google it. You can also often prevent rejection by setting up rDNS to the domain name that matches the server hostname. Again, google is your friend.
You can also just ask chatgpt. I just tried and both answers are bang on.
I am using postfix. The bug report I created is showing a snip from the mail log where it is indicating SMTP is not enabled, however it is.
For using the sendmail method, while Postfix is installed, sendmail is still called up. When using that method, there is no call for sendmail to send anything. That is why I posted this as a bug. I created two bug reports. One for the SMTP issue, and the other for sendmail.
You cannot have sendmail server and postfix server running at the same time because they would both be trying to listen on the same port. It’s gotta be either one or the other. I don’t think the OS will let that happen anyways. I believe sendmail client is used for sending only. It is not a process that needs to be running and listening to a port like sendmail server. I would run the following commands just to make sure that is all correct.
I don’t remember having a problem like that. If it’s like most of your other problems, it probably has something to do with your install again. Maybe you are missing a package. I am not sure what SMTP needs. Maybe php-cli?
At this point , the only difference between my and their install is using the Debian 11 repo for PHP (unless they are now using the Debian repo now since their recent updates), and MariaDB. I am not sure how either of those would affect creating SMTP errors, or not sending email at all.
I see php-cli is already installed, and I would think something in the logs would indicated if that was missing if needed.
For sending out email locally, I was literally watching the maillog to update after creating a new account. I see the system is supposed to send out a welcome email when that happens.
According the the email log in the ASTPP web interface, such an email was sent, but watching the maillog and waiting for an update in the log, that never occurred.
One can also send a Notification email from the home admin page for low, or past due balance. I have tried both SMTP account, and sendmail. Same results.
This will cause a date stamped log file to be created at
/opt/ASTPP/web_interface/astpp/application/logs/
which shows all the PHP code being initialized and any errors in that code. This should only be enabled temporarily as the log files are not automatically deleted. There may also be some sensitive information in those files.
Lastly, you can enable php debugging by going to
/opt/ASTPP/web_interface/astpp/index.php
and set define ( 'ENVIRONMENT', 'development' ). This allows you to see the PHP errors in a web browser as they happen instead of just in the log files.
I did recently mention in the thread about the debug thread I created, that despite set to ‘0’ debug logs are still being generated even with the newest code.
The only two errors I am seeing are:
ERROR - 2023-08-25 00:00:34 --> Severity: Notice --> Undefined index: billseconds /opt/ASTPP/web_interface/astpp/application/models/common_model.php 204
ERROR - 2023-08-25 00:00:34 --> Severity: Notice --> Trying to access array offset on value of type bool /opt/ASTPP/web_interface/astpp/application/libraries/Usertracking.php 224
In your jira bug report you said you got an error in the ASTPP log that says “Authentication not enabled”. Show us your SMTP setup in the ASTPP UI. Especially the host configuration and port #. If you are using a service like gmail it should be ssl://smtp.googlemail.com using port 465.
The password should be a one time device password obtained on the google end if you have 2FA set up on the google end. Google will only verify that password on the first try and then it doesn’t need it anymore.
Maybe have a look at the CodeIgnitor Email Class documentation and see if you can find any clues in there.
Thanks for that CodeIgniter link. While I can see better how they are using a lot of the code in the whole project now, there is no specifics on the correct format for the “smtp_host.” I suspect that could be my problem due to the STMP video they made for version 4 using Gmail.
After spending some time figuring out Gmail’s new method to connect to their mail system, I got it set up and clicked on one of the “Notify” buttons on the main page. The email did go out, but it sent a double email (correction: was emails stuck in the queue).
I also spent some time on that thread you suggested. It is completely outdated. And the output from the php command only returns some output which looks like a curl command was ran.
:/var/www/html/astpp/cron# php cron.php BroadcastEmail
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
Since it is not functioning plain ol’ SMTP, either it is bugged, or I am doing some setting incorrectly.
Since the documentation is devoid of any setting help, I don’t know which.
I think the docs needs to be put on some place where others could contribute.
UPDATE: The notification systems seems to be spamming me at this point.
I have three different accounts set up, and it is sending each account a low balance notification every hour
Can the documentation be put on some sort of thing like a wiki where others can contribute? Issues like this is nowhere to be found in your documentation, and others cannot help with it.
No trying to hijack an apparently fixed issue and thread, but I’m experiencing similar issues with the SMTP config.
All parameters are set (port 465), tried ss://, ttl://, and without them plain SMTP Host. Logs do not show anything. I’m using POSTFIX.
I tried to edit the CodeIgniter file mentioned on this thread :
// var $mailpath = "/usr/sbin/sendmail"; // Sendmail path
var $mailpath = "/usr/sbin/postfix"; // POSTFIX path
var $smtp_crypto = "tls"; // SMTP Encryption. Can be null, tls or ssl.
Same results, all my messages status stay at “pending”.
I can mail from this server from other app, without an issue, using Postfix. so Postfix parameters connects properly with the SMTP host, and sends email correctly and without problem. It is just my ASTPP installation not sending messages, and no logs whatsoever (related to mailing).
Is there something else I need to tweak in order to make ASTPP send emails using POSTFIX ? (and log mailing activity properly ?)
There is an option to have ASTPP send locally sendmail/postfix, but it does not seem to function at all.
I put in a bug report on that issue, and it is not making much progress.
Since you stated
It seems like you have the Sendmail option selected in settings, rather than SMTP selected.
For your line
There is no need for that. When postfix is installed, it already places a symbolic link.
I can’t find where else in ASTPP settings I can set SMTP instead of Sendmail.
My Installation is ASTPP V6 Community version, and the notifications settings looks like this:
Also, I verified that there were no symlink created for postfix on my installation (for some reason), so I went ahead and just renamed the existing “sendmail” (usr/sbin) and created a Symlink “sendmail” pointing “postfix”. My php.ini has this line too: /usr/sbin/sendmail -t -i
I rebooted it, and still not able to send notifications. Also the logs, only “astpp.log” appears to be recording some info. The other log in ASTPP log directory (astpp_email.log) is still blank (0 bytes) since the installation of ASTPP.
When SMTP is enabled, trying to adjust postfix or sendmail is is not going to help. The system is then using a mail client from CodeIgniter. You will have to check the local logs, and the mail server logs on the mail server.
Only when SMTP is disabled, and notifications set to yes will it use sendmail or postfix.