[IMP]Fetchmail:add tooltip on user - change label of model to object to create
authoraag (OpenERP) <aag@tinyerp.co.in>
Mon, 9 May 2011 05:13:27 +0000 (10:43 +0530)
committeraag (OpenERP) <aag@tinyerp.co.in>
Mon, 9 May 2011 05:13:27 +0000 (10:43 +0530)
bzr revid: aag@tinyerp.co.in-20110509051327-wl60urxkcce3l7yw

addons/fetchmail/fetchmail.py

index 41f84cf..9aeddd7 100644 (file)
@@ -59,9 +59,9 @@ class email_server(osv.osv):
         'password' : fields.char('Password', size=1024, invisible=True, required=True, readonly=True, states={'draft':[('readonly', False)]}),
         'note': fields.text('Description'),
         'action_id':fields.many2one('ir.actions.server', 'Email Server Action', required=False, domain="[('state','=','email')]", help="An Email Server Action. It will be run whenever an e-mail is fetched from server."),
-        'object_id': fields.many2one('ir.model', "Model", required=True, help="OpenObject Model. Generates a record of this model.\nSelect Object with message_new attrbutes."),
+        'object_id': fields.many2one('ir.model', "Object To Create", required=True, help="Whenever an email arrives, it automatically creates the object of this type with all the information attached."),
         'priority': fields.integer('Server Priority', readonly=True, states={'draft':[('readonly', False)]}, help="Priority between 0 to 10, select define the order of Processing"),
-        'user_id':fields.many2one('res.users', 'User', required=False),
+        'user_id':fields.many2one('res.users', 'User', required=False,  help="This is the user that runs the cron"),
         'message_ids': fields.one2many('mailgate.message', 'server_id', 'Messages', readonly=True),
     }
     _defaults = {