Hi,
I finally got OpenERP 7.0 running on CentOS 6.3 (wasn't easy as the some instructions are missing in the official documentation).
I did setup the outgoing mail correctly (e.g. creating users, and clicking the send password reset button as administrator works)
But when I make a quotation, it tries to send it using the alias of the user.
I created a user (firstname lastname, ... and a loginID 'AAAA')
now openerp automatically assigns an alias to that user, AAAA@app01 in this case (where app01 is the servers hostname)
But openerp SHOULD send that quoatation using the mailaddress of the user I'm logged on with.
see the logging below
2013-03-10 18:47:33,569 1445 ERROR openerp openerp.addons.base.ir.ir_mail_server: Mail delivery failed via SMTP server 'smtp.xxxxxxxx.be'.
SMTPSenderRefused: 550
5.1.0 sender domain not fully qualified
AAAA@app01
Traceback (most recent call last):
File "/opt/openerp/server/openerp/addons/base/ir/ir_mail_server.py", line 460, in send_email
smtp.sendmail(smtp_from, smtp_to_list, message.as_string())
File "/usr/lib64/python2.6/smtplib.py", line 698, in sendmail
raise SMTPSenderRefused(code, resp, from_addr)
SMTPSenderRefused: (550, '5.1.0 sender domain not fully qualified', 'AAAA@app01')
2013-03-10 18:47:33,571 1445 ERROR openerp openerp.addons.mail.mail_mail: failed sending mail.mail 6
Traceback (most recent call last):
File "/opt/openerp/server/openerp/addons/mail/mail_mail.py", line 278, in send
mail_server_id=mail.mail_server_id.id, context=context)
File "/opt/openerp/server/openerp/addons/base/ir/ir_mail_server.py", line 473, in send_email
raise MailDeliveryException(_("Mail delivery failed"), msg)
MailDeliveryException: (u'Mail delivery failed', u"Mail delivery failed via SMTP server 'smtp.xxxxxxx.be'.\nSMTPSenderRefused: 550\n5.1.0 sender domain not fully qualified\nAAAA@app01")
anyone who can assist here ?
Thanks
↧