summaryrefslogtreecommitdiffstats
path: root/config/accounts.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix prettier.Lauri Ojansivu2020-01-101-3/+7
|
* Prettier & eslint project style updateJustin Reynolds2019-06-281-22/+38
|
* Fix email settings loading:Julen Landa Alustiza2017-04-011-6/+1
| | | | | | | | | | | MAIL_URL was overriden with database info all the time. Now if MAIL_URL exists is not overwritten and if neither MAIL_URL nor exists valid admin panel data MAIL_URL is not set. MAIL_FROM was ignored. Same behaviour, env variable has bigger priority than database configuration. On both cases, althrought environment variable is set, updating admin-panel mail settings will load new info and ignore the environment variable. Remove some code that is not needed anymore
* Merge pull request #943 from Zokormazo/smtpLauri Ojansivu2017-03-281-1/+6
|\ | | | | Don't send emails if missing smtp host
| * Don't send emails if missing smtp hostJulen Landa Alustiza2017-03-281-2/+6
| |
* | Remove invitation code if email sending failed, improve registration process ↵lkisme2017-03-281-2/+0
|/ | | | with invitation
* Admin panel:lkisme2017-02-241-4/+11
| | | | | | | Only invited user can register in strict mode, Set mail server in admin panel, Switch strict mode in admin panel, Invite people to system in admin panel
* Fix invitation email subjectMaxime Quandalle2015-12-211-3/+7
|
* i18n-ize meteor email templatesfloatinghotpot2015-12-041-0/+7
|
* Add MAIL_FROM environment variableDrew DeVault2015-11-251-0/+6
| | | | | | | Otherwise the mail comes from no-reply@meteor.com, which will fail a lot of spam tests. Closes #407
* Share the useraccounts configuration with the serverMaxime Quandalle2015-11-021-0/+48
The previous users accounts templates configuration only happened on the client, which was wrong and caused some bugs, for instance an invalid URL was generated in the reset password e-mail. Fixes #297