mirror of https://github.com/OCA/social.git
- Imported last updates from v8. - Adapted to v9. - Added a saner default to `mass_mailing.salt` configuration parameter by reusing `database.secret` if available, hoping that some day https://github.com/odoo/odoo/pull/12040 gets merged. - Updated README. - Increase security, drop backwards compatibility. Security got improved upstream, which would again break compatibility among current addon and future master upstream. I choose to break it now and keep it secured future-wise, so I drop the backwards compatibility features. - Includes tour tests. - Removes outdated tests. - Extends the mailing list management form when unsubscriber is a contact. - Adds a reason form even if he is not. - Avoids all methods that were not model-agnostic. [FIX][mass_mailing_custom_unsubscribe] Reasons noupdate After this fix, when you update the addon, you will not lose your customized reasons. [FIX] Compatibilize with mass_mailing_partner Current test code was based on the assumption that the `@api.model` decorator on `create()` ensured an empty recordset when running the method, but that's not true. This was causing an incompatibility betwee these tests and the `mass_mailing_partner` addon, which works assuming 0-1 recordsets. Now records are created from an empty recordset, and thus tests work everywhere. Update instructions If the user does not add the unsubscribe snippet, nothing will happen, so it's added to README to avoid confusion when testing/using the addon. [FIX] Use the right operator to preserve recordsets order Using `|=` sorts records at will each time (treating them as Python's `set`). Using `+=` always appends a record to the end of the set. Since we are using the record position in the set, this caused the test to work sometimes and fail other times. Now it works always. |
||
---|---|---|
base_search_mail_content | ||
email_template_qweb | ||
fetchmail_thread_default | ||
mail_activity_board | ||
mail_activity_done | ||
mail_activity_team | ||
mail_debrand | ||
mail_inline_css | ||
mail_optional_autofollow | ||
mail_outbound_static | ||
mail_restrict_follower_selection | ||
mail_tracking | ||
mail_tracking_mailgun | ||
mail_tracking_mass_mailing | ||
mass_mailing_custom_unsubscribe | ||
mass_mailing_list_dynamic | ||
mass_mailing_partner | ||
mass_mailing_resend | ||
setup | ||
.editorconfig | ||
.eslintrc | ||
.flake8 | ||
.gitignore | ||
.isort.cfg | ||
.pre-commit-config.yaml | ||
.pylintrc | ||
.pylintrc-mandatory | ||
.travis.yml | ||
LICENSE | ||
README.md | ||
oca_dependencies.txt | ||
requirements.txt |
README.md
Social addons for Odoo
Addons concerning Odoo's social ERP features and messaging in general
Available addons
addon | version | summary |
---|---|---|
base_search_mail_content | 13.0.1.0.0 | Base Search Mail Content |
email_template_qweb | 13.0.1.0.0 | Use the QWeb templating mechanism for emails |
fetchmail_thread_default | 13.0.1.0.0 | Post unkonwn messages to an existing thread |
mail_activity_board | 13.0.1.0.1 | Add Activity Boards |
mail_activity_done | 13.0.1.0.0 | Mail Activity Done |
mail_activity_team | 13.0.1.0.0 | Add Teams to Activities |
mail_debrand | 13.0.0.0.1 | Remove Odoo branding in sent emails |
mail_inline_css | 13.0.1.0.0 | Convert style tags in inline style in your mails |
mail_optional_autofollow | 13.0.1.0.0 | Choose if you want to automatically add new recipients as followers on mail.compose.message |
mail_outbound_static | 13.0.1.0.1 | Allows you to configure the from header for a mail server. |
mail_restrict_follower_selection | 13.0.1.0.2 | Define a domain from which followers can be selected |
mail_tracking | 13.0.1.0.4 | Email tracking system for all mails sent |
mail_tracking_mailgun | 13.0.1.0.0 | Mail tracking and Mailgun webhooks integration |
mail_tracking_mass_mailing | 13.0.1.0.0 | Improve mass mailing email tracking |
mass_mailing_list_dynamic | 13.0.1.0.0 | Mass mailing lists that get autopopulated |
mass_mailing_partner | 13.0.1.0.1 | Link partners with mass-mailing |
mass_mailing_resend | 13.0.1.0.0 | Resend mass mailings |