I thought I'd be able to open my Friendica server to friends as soon as my reverse proxy was set up, but it turns out I still need to figure out how to set up an email server on a VPS and use it for system emails so that Friendica password notifications, etc. actually get delivered.
This project is neverending! And I feel like I'm missing crucial information for setting up a mail server.
This project is neverending! And I feel like I'm missing crucial information for setting up a mail server.
Hypolite Petovan likes this.
Hypolite Petovan 10 months ago
But you can use the SendGrid free plan to send up to 100 emails a day for example: https://sendgrid.com/pricing/ You'll have to configure your Friendica node to use their SMTP server with the PHP Mailer addon, but otherwise you won't have to go through the painstaking process of setting up your own email server.
Spencer likes this.
Spencer 10 months ago
The admin page for PHP Mailer reads:
When I edit
config/addon.config.php
, the first line reads:I'm getting slightly different instructions, so I wanted to check: should I copy
addon.config.php
tophpmailer.config.php
and then edit the configuration options there? Or should I do it directly inaddon.config.php
?Hypolite Petovan 10 months ago
addon.config.php
, thanks for pointing out the confusing wording. I've had to assists someone else who didn't understand the structure of PHP arrays in the context of configuration files.Spencer 10 months ago
One more question regarding setup: the sample config for PHP Mailer includes this:
Should I change this to true if I'm using a SendGrid relay? Common sense tells me yes, but I just want to double-check.
Hypolite Petovan 10 months ago
mail()
command, which relies on whatever MTA is installed on your server.Spencer 10 months ago
Hypolite Petovan likes this.