You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.4 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <record id="action_mail_outgoing" model="ir.actions.act_window">
  5. <field name="name">Outgoing</field>
  6. <field name="res_model">mail.mail</field>
  7. <field name="view_type">form</field>
  8. <field name="view_mode">tree,form</field>
  9. <field name="context">{}</field>
  10. <field name="search_view_id" ref="mail.view_mail_search"/>
  11. <field name="help" type="html">
  12. <p>
  13. Failed or delayed emails will be shown here. You will be able to retry failed emails and send delayed emails manually.
  14. </p>
  15. </field>
  16. </record>
  17. <menuitem name="Outgoing" id="menu_mail_outgoing" parent="mail.mail_feeds" action="action_mail_outgoing" sequence="20"/>
  18. <!-- After installation of the module, open the related menu -->
  19. <record id="action_mail_outgoing_menu" model="ir.actions.client">
  20. <field name="name">Open Outgoing Menu</field>
  21. <field name="tag">reload</field>
  22. <field name="params" eval="{'menu_id': ref('mail_outgoing.menu_mail_outgoing')}"/>
  23. </record>
  24. <record id="base.open_menu" model="ir.actions.todo">
  25. <field name="action_id" ref="action_mail_outgoing_menu"/>
  26. <field name="state">open</field>
  27. </record>
  28. </data>
  29. </openerp>