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.
39 lines
1.4 KiB
39 lines
1.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="action_mail_outgoing" model="ir.actions.client">
|
|
<field name="name">Inbox</field>
|
|
<field name="tag">mail.wall</field>
|
|
<field name="res_model">mail.message</field>
|
|
<field name="context">{
|
|
'default_model': 'res.users',
|
|
'default_res_id': uid,
|
|
'thread_model': 'res.partner',
|
|
'needaction_menu_ref': ['mail.mail_tomefeeds', 'mail.mail_starfeeds']
|
|
}</field>
|
|
<field name="params" eval=""{
|
|
'domain': [
|
|
('author_id.user_ids', 'in', [uid]),
|
|
],
|
|
'view_mailbox': True,
|
|
'view_inbox': True,
|
|
'read_action': 'read',
|
|
'show_compose_message': False
|
|
}""/>
|
|
<field name="help" type="html">
|
|
<p>
|
|
<b>Good Job!</b> Your inbox is empty.
|
|
</p><p>
|
|
Your inbox contains private messages or emails sent to you
|
|
as well as information related to documents or people you
|
|
follow.
|
|
</p>
|
|
</field>
|
|
</record>
|
|
|
|
<menuitem name="Sent" id="menu_sent_mails" parent="mail.mail_feeds"
|
|
action="action_mail_outgoing" sequence="20"/>
|
|
|
|
</data>
|
|
</openerp>
|
|
|