summaryrefslogtreecommitdiffstats
path: root/app/email.go
Commit message (Collapse)AuthorAgeFilesLines
* Idiomatic error handling for app/e*.go (#9426)Jesús Espino2018-09-241-3/+5
|
* Move file backend to its own service (#9435)Jesús Espino2018-09-201-1/+2
| | | | | | * Move file backend to its own service * Moving utils/inbucket to mailservice package
* Break HTML blocks to individual strings (#8903)Yusuke Nemoto2018-07-201-14/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Modifying message and templates about mfa_change * Modifying message and templates about password_change * Modify message and template about password_reset * Modify message and template about singin_change * Modify message and template about email_info * Modify message and template about change_username * Modify message about change_email * Add missing props * Add argument * Modify message and template about token_added * Modify messages and template about notification_email * Modify message and template about deactivate_email * Fix style * Remove unused message * Remove br tags * Modify message and code about invite_mail * Add missing message
* MM-11120 Adding setting to disable email invitations and rate limiting. (#9063)Christopher Speller2018-07-101-1/+47
| | | | | | | | | | * Adding setting to disable email invitations. * Adding a setting and rate limiting for email invite sending. * Modifying email rate limit to 20/user/hour * Adding EnableEmailInvitations to client side config and command.
* Small translation fixes (#8940)Jesús Espino2018-06-161-5/+2
|
* [MM-1915] Add Deactivate Account - server side (#8699)Carlos Tadeu Panato Junior2018-05-281-0/+22
|
* Structured logging (#8673)Christopher Speller2018-04-271-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Implementing structured logging * Changes to en.json to allow refactor to run. * Fixing global logger * Structured logger initalization. * Add caller. * Do some log redirection. * Auto refactor * Cleaning up l4g reference and removing dependancy. * Removing junk. * Copyright headers. * Fixing tests * Revert "Changes to en.json to allow refactor to run." This reverts commit fd8249e99bcad0231e6ea65cd77c32aae9a54026. * Fixing some auto refactor strangeness and typo. * Making keys more human readable.
* MM-9779: Incorporate a Token into the invitations system (#8604)Jesús Espino2018-04-181-4/+11
| | | | | | | | | | | | | | | | | | | | * Incorporate a Token into the invitations system * Adding unit tests * Fixing some api4 client tests * Removing unnecesary hash validation * Change the Hash concept on invitations with tokenId * Not send invitation if it wasn't able to create the Token * Fixing some naming problems * Changing the hash query params received from the client side * Removed unneded data param in the token usage
* MM-9999 Fix unwanted team invite_id in email invites. (#8550)Christopher Speller2018-03-291-1/+0
| | | | | | * Fix unwanted team invite_id in email invites. * Removing unused translation.
* Remove global site url (#8343)Chris2018-02-221-1/+1
| | | | | | | | * remove global site url * missed one * revert mysterious change
* Merge branch 'master' into release-4.7Chris2018-02-121-1/+2
|\
| * Remove license globals entirely (#8229)Chris2018-02-091-1/+2
| | | | | | | | | | | | | | | | * remove license globals entirely * fix infinite recursion * test fix
* | Added invite_id field to email invite url, along with validation of this ↵Jonathan2018-02-121-0/+1
|/ | | | field on the server (#8235)
* Remove utils.ClientCfg and utils.ClientCfgHash (#8041)Chris2018-01-051-13/+13
| | | | | | * remove utils.ClientCfg and utils.ClientCfgHash * remove unused import
* send-mail refactor (#7885)Chris2017-11-231-11/+15
|
* refactor template code (#7860)Chris2017-11-201-14/+40
|
* eliminate more utils.Cfg references (#7701)Chris2017-10-241-17/+17
|
* Reduce utils.Cfg references (#7650)Chris2017-10-181-2/+2
| | | | | | | | | | | | * app.UpdateConfig method * test fix * another test fix * the config override option as-was is just error prone, remove it for now * derp
* Renaming repoChristopher Speller2017-09-061-2/+2
|
* app type transition (#7167)Chris2017-09-061-3/+4
|
* PLT-7522 Cleaned up translation of templates (#7351)Harrison Healey2017-09-051-18/+17
| | | | | | | | * PLT-7522 Cleaned up translation of templates * Added unit tests * Changed TranslateAsHtml to not be variadic
* App: NewLocAppError -> NewAppError (#7327)George Goldberg2017-09-011-10/+11
| | | | | | * App: NewLocAppError -> NewAppError * Remove statuscode that got missed.
* PLT-7194 Add email when adding user access tokens (#7087)Joram Wilander2017-08-031-0/+18
| | | | | | | | * Add email when adding user access tokens * Update en.json * Update en.json
* Creating common token store and moving email invites and verification to it ↵Christopher Speller2017-04-271-8/+12
| | | | (#6213)
* PLT-5860 Updated copyright date (#6058)Harrison Healey2017-04-121-9/+8
| | | | | | | | | | | | * PLT-5860 Updated copyright date in about modal * PLT-5860 Updated copyright notice in JSX files * PLT-5860 Updated copyright notice in go files * Fixed misc copyright dates * Fixed component snapshots
* Correct typo in app/email.go (#5569)Ryan Wang2017-03-021-2/+2
|
* Make all emails with the same pattern on subject (#5198)Carlos Tadeu Panato Junior2017-03-011-10/+42
| | | | | | | | | | | | | | | | | | | | * make all email subject standard * move SendPasswordReset to app/email.go update per review * update email subjects per review update error fix expected subject * Update email_test.go * Update en.json * fix missing quotes
* Migrate functions to app package (#5106)Joram Wilander2017-01-191-0/+236
* Refactor and move session logic into app package * Refactor email functions into the app package * Refactor password update into app package * Migrate user functions to app package * Move team functions into app package * Migrate channel functions into app package * Pass SiteURL through to app functions * Update based on feedback