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
34 lines
1.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="action_mail_outgoing" model="ir.actions.act_window">
|
|
<field name="name">Outgoing</field>
|
|
<field name="res_model">mail.mail</field>
|
|
<field name="view_type">form</field>
|
|
<field name="view_mode">tree,form</field>
|
|
<field name="context">{}</field>
|
|
<field name="search_view_id" ref="mail.view_mail_search"/>
|
|
<field name="help" type="html">
|
|
<p>
|
|
Failed or delayed emails will be shown here. You will be able to retry failed emails and send delayed emails manually.
|
|
</p>
|
|
</field>
|
|
</record>
|
|
|
|
<menuitem name="Outgoing" id="menu_mail_outgoing" parent="mail.mail_feeds" action="action_mail_outgoing" sequence="20"/>
|
|
|
|
<!-- After installation of the module, open the related menu -->
|
|
<record id="action_mail_outgoing_menu" model="ir.actions.client">
|
|
<field name="name">Open Outgoing Menu</field>
|
|
<field name="tag">reload</field>
|
|
<field name="params" eval="{'menu_id': ref('mail_outgoing.menu_mail_outgoing')}"/>
|
|
</record>
|
|
<record id="base.open_menu" model="ir.actions.todo">
|
|
<field name="action_id" ref="action_mail_outgoing_menu"/>
|
|
<field name="state">open</field>
|
|
</record>
|
|
|
|
|
|
</data>
|
|
</openerp>
|