[phpmailer] Add SMTP-Integration of PHPMailer addon #834
No reviewers
Labels
No labels
2018.09
2019.01
2019.03
2019.06
2019.09
2019.12
2020.03
2020.06
2020.09
2020.12
2021.03
2021.07
2021.09
2022.02
2022.06
2022.09
2022.12
2023.04
2023.05
2023.09
2024.03
2024.06
2024.09
2024.12
dependencies
Hackathon 2021
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: friendica/friendica-addons#834
Loading…
Reference in a new issue
No description provided.
Delete branch "addon/phpmailer"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
See https://github.com/friendica/friendica/issues/5047
Thanks for your work! They are several points I would like you to change about config naming/accessing.
First of all, configuration should be accessed with
Config::get('category', 'key')
.Secondly, addon-specific configuration are stored in their own category, in this case it should be:
I have more precise change request that i will include in the files themselves.
On top of the change requests, please add a default configuration file for this addon that will explicit the configuration values this addon expects and will be loaded via the
load_config
hook.You can take example from the
geonames
addon.I will makes the requested changes to this addon.
The old config getters where used for an older friendica version, I will update them
@MrPetovan I am now using the new
Config::get
functionHave you tried this addon? With secure/insecure settings?
@MrPetovan I used it for 5 months inside a docker container for my friendica server
Thank you for your work!